home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / p / plbin.zip / pl / man / clean < prev    next >
Text File  |  1992-06-18  |  169b  |  15 lines

  1. #!/bin/csh -f
  2.  
  3. alias rmtex 'rm -f \!*.{aux,dvi,idx,ind,lof,log,lot,toc}'
  4.  
  5. foreach f (*.doc)
  6.     rm -f $f:r.tex
  7.     rmtex $f:r
  8. end
  9.  
  10. foreach f (*.tex)
  11.     rmtex $f:r
  12. end
  13.  
  14. rm -f *~
  15.