sublime-markdown-extended
sublime-markdown-extended copied to clipboard
bash syntax - does not recognize "case"
If you add below as code block with bash syntax, then everything below will be interpreted as bash script, even if you close code block.
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status
;;
restart)
stop
start
;;
*)
echo "Usage: $0 {start|stop|status|restart}"
esac