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