10 lines
127 B
Tcsh
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
|