summaryrefslogtreecommitdiffstats
path: root/test/bashisms/negations.sh
blob: 890135742af2dc8858d228869f74da8fcb651e0d (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

case "moo" in
    [^f]oo) # BASHISM
	echo hey
	;;
    [!f]oo)
	echo hey
	;;
esac