1 2 3 4 5 6 7 8 9
#!/bin/sh targets=$(ls) for target in $targets ; do if [ $target != 'build.sh' ] ; then cd $target ./build.sh cd .. fi done