: what is the current state
df /dev/rhp?
: delete all junk files
find / '(' -name "*.tmp" -o -name "*.lst" -o -name "*.map" -o -name "tmp*" -o -name "temp*" -o -name "core" -o -name "a.out" ')' -a -exec rm -f {} ';'
: remove all temporary files
cd /tmp
rm -f *
cd lpd
: if a lock file is present go no further
if -r lock goto finish
: flush out lpd directories
rm -f *
cd x
rm -f *
: finish - pack all unused user files
upack /user1 /user2
: well what effect did that have
df /dev/rhp?
