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

9 lines
100 B
Bash

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