Artifact 89c0d6a59f7137f763bd6c7e78e154d4d160afab5ee6ac3700c17c281ed74e7f:
- Executable file
r38/util/clean
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 210) [annotate] [blame] [check-ins using] [more...]
#!/bin/csh -f # clean --- Remove *.old files from a tree. # You need to position yourself at the top of the relevant tree to use it. # Author: Anthony C. Hearn. find . -name "*.old" -print -exec rm -r {} \;