9 lines
100 B
Bash
9 lines
100 B
Bash
#!/bin/sh
|
|
|
|
for F in sim
|
|
do
|
|
if [ -f $F/Clean.sh ]; then
|
|
( cd $F; ./Clean.sh )
|
|
fi
|
|
done
|