home *** CD-ROM | disk | FTP | other *** search
/ ftp.eterna.com.au / 2014.06.ftp.eterna.com.au.tar / ftp.eterna.com.au / pub / rc.d.tar.gz / rc.d.tar / rc.d / cleartmp < prev    next >
Text File  |  1998-09-23  |  362b  |  13 lines

  1. #! /bin/sh
  2.  
  3. # PROVIDE: cleartmp
  4. # REQUIRE: mountall
  5.  
  6. echo clearing /tmp
  7.  
  8. # Prune quickly with one rm, then use find to clean up /tmp/[lq]* (this
  9. # is not needed with mfs /tmp, but doesn't hurt anything).
  10. (cd /tmp && rm -rf [a-km-pr-zA-Z]* &&
  11.     find . ! -name . ! -name lost+found ! -name quota.user \
  12.     ! -name quota.group -exec rm -rf -- {} \; -type d -prune)
  13.