Skip to content

Instantly share code, notes, and snippets.

@kamarcum
Created January 29, 2015 19:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kamarcum/0d0f20385a3fc6ac3cdc to your computer and use it in GitHub Desktop.
Save kamarcum/0d0f20385a3fc6ac3cdc to your computer and use it in GitHub Desktop.
case "$1" in
start)
start
;;
stop)
start
;;
restart)
stop
start
;;
*)
echo "Usage: $NAME {start|stop|restart}" >&2
exit 1
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment