test appctl

This commit is contained in:
Jeff Lindsay
2013-06-11 20:52:50 -07:00
parent f1e031d06a
commit b93ad57e33

15
appctl Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
case "$1" in
hello)
echo Hello world
;;
foobar)
echo Foobar
;;
*)
echo "Usage: ..."
;;
esac