1 2 3 4 5 6 7 8 9 10
#!/bin/sh set -e tmpl "$@" build.jst.tmpl > build.jst for lib in ./lib/*; do pushd $lib ./configure "$@" popd done