clean 210 B

123456789
  1. #!/bin/csh -f
  2. # clean --- Remove *.old files from a tree.
  3. # You need to position yourself at the top of the relevant tree to use it.
  4. # Author: Anthony C. Hearn.
  5. find . -name "*.old" -print -exec rm -r {} \;