From b93ad57e331c68c73cb20e861fc52e15490f086a Mon Sep 17 00:00:00 2001 From: Jeff Lindsay Date: Tue, 11 Jun 2013 20:52:50 -0700 Subject: [PATCH] test appctl --- appctl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 appctl diff --git a/appctl b/appctl new file mode 100755 index 000000000..8d688c3cd --- /dev/null +++ b/appctl @@ -0,0 +1,15 @@ +#!/bin/bash + +case "$1" in + hello) + echo Hello world + ;; + + foobar) + echo Foobar + ;; + + *) + echo "Usage: ..." + ;; +esac \ No newline at end of file