2025-05-13 19:44:53 +08:00

10 lines
139 B
Tcsh

#!/bin/csh -f
foreach F ( * )
if ( -d $F ) then
if ( -e $F/Clean.csh ) then
( cd $F; ./Clean.csh )
endif
endif
end