author | wenzelm |
Wed, 16 Apr 1997 18:13:12 +0200 | |
changeset 2955 | 92599a47a7ab |
parent 2954 | a16e1011bcc1 |
child 2956 | d128ae3e7421 |
--- a/src/Tools/rm-logfiles Tue Apr 15 10:23:38 1997 +0200 +++ b/src/Tools/rm-logfiles Wed Apr 16 18:13:12 1997 +0200 @@ -1,6 +1,6 @@ #! /bin/sh # $Id$ #Remove useless files from subdirectories -rm log */make*.log */make*.log.gz -rm */test -rm */.*.thy.ML */*/.*.thy.ML + +find . \( -name log -o -name make\*.log\* -o -name test -o -name .\*.thy.ML \) -print \ + | xargs rm