12 lines
175 B
Bash
Executable File
12 lines
175 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ -d /var/preserve ]; then
|
|
echo ""
|
|
echo "Removing stale files from /var/preserve:"
|
|
|
|
cd /var/preserve && find . ! -name . -mtime +7 -delete
|
|
fi
|