: Weekly script run by cron to clean up batch queues.
cd /usr/spool/batch
for dir in ???* ; do
	if [ ! -d "/usr/spool/batch/$dir" ]; then
		continue
	fi
	cd /usr/spool/batch/$dir
	if [ -f This_week ]; then
		cp -m This_week Last_week
	fi
	cp /dev/null This_week
done
