]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/case.tests
Bash-4.0 patchlevel 38
[thirdparty/bash.git] / tests / case.tests
CommitLineData
3185942a
JA
1case foo in
2bar) echo skip ;;
3foo) echo fallthrough ;&
4bax) echo to here ;&
5qux) echo and here;;
6fop) echo but not here;;
7esac
8
9case foobar in
10bar) echo skip ;;
11foo*) echo retest ;;&
12*bar) echo and match ;;&
13qux) echo but not this ;;
14esac