Skip to content

Instantly share code, notes, and snippets.

@whummer
Created June 22, 2016 03:37
Show Gist options
  • Save whummer/79205d22c952b6f891421d28c67cb39b to your computer and use it in GitHub Desktop.
Save whummer/79205d22c952b6f891421d28c67cb39b to your computer and use it in GitHub Desktop.
#!/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