clean.sh (103B)
1 #!/bin/sh 2 3 cd server 4 5 ./clean.sh 6 7 cd .. 8 9 for dir in agents/*; do 10 cd $dir 11 12 ./clean.sh 13 14 cd ../.. 15 done