cups/cups.cron

9 lines
118 B
Plaintext
Raw Normal View History

#!/bin/sh
for d in /var/spool/cups/tmp
do
if [ -d "$d" ]; then
/usr/sbin/tmpwatch -f 720 "$d"
fi
done
exit 0