Created
June 22, 2016 03:37
-
-
Save whummer/79205d22c952b6f891421d28c67cb39b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "hi" | |
for cmd in make npm python java javac; do | |
test `which $cmd` || { echo "Please install '$cmd' first"; exit 1; } | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment