To install:
	su
	make install
	cp batch.1 /usr/man/man1
	cp batchd.8 /usr/man/man8
	mkdir /usr/spool/batch
	cp -r ./queues/* ./queues/.cleanup /usr/spool/batch
	cat >> /usr/lib/crontab << "."
00 5 * * 6 sh /usr/spool/batch/.cleanup
.
	cat >> /etc/rc.local << "."
if [ -d /usr/spool/batch ]; then
	rm -f /usr/spool/batch/*/tf*
	/usr/lib/batchd & echo -n ' batch'			>/dev/console
fi
.
	/usr/lib/batchd &
	sleep 5; echo echo testing | batch now
