1
0
Fork 0
git/t/chainlint/case-comment.expect
Daniel Baumann 54102a2c29
Adding upstream version 1:2.47.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-23 07:43:39 +02:00

11 lines
123 B
Text

2 (
3 case "$x" in
4 # found foo
5 x) foo ;;
6 # found other
7 *)
8 # treat it as bar
9 bar
10 ;;
11 esac
12 )