clean.sh (89B)
1 #!/bin/sh 2 3 set -ex 4 5 rm -rf bin 6 7 for dir in agents/*; do ( cd "$dir"; ./clean.sh; ); done