build (199B)
1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/sh -e printf "build script was given these args:" printf " %s" "$@" printf "\n" if [ -e testfile ]; then printf "testfile found.\n" else printf "testfile not found!\n" exit 1 fi