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

10 lines
127 B
Tcsh

#!/bin/csh -f
set DIRS="sim"
foreach F ( $DIRS )
if ( -e $F/Clean.csh ) then
( cd $F; ./Clean.csh )
endif
end