-
Notifications
You must be signed in to change notification settings - Fork 1.9k
SC1085
Grische edited this page Jul 30, 2025
·
1 revision
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.