mirror of
https://github.com/git/git
synced 2024-10-31 01:43:41 +00:00
12 lines
98 B
Text
12 lines
98 B
Text
|
(
|
||
|
case "$x" in
|
||
|
# found foo
|
||
|
x) foo ;;
|
||
|
# found other
|
||
|
*)
|
||
|
# treat it as bar
|
||
|
bar
|
||
|
;;
|
||
|
esac
|
||
|
)
|