case $options in foobar) echo foo ;; echo bar;; *) echo unknown option ;; esac
case $options in foobar) echo foo ; echo bar;; *) echo unknown option ;; esac
There should be no statements between ;; and the next case item.
;;
There was an error while loading. Please reload this page.