11 lines
93 B
Bash
11 lines
93 B
Bash
#!/bin/sh
|
|
|
|
case "moo" in
|
|
[^f]oo) # BASHISM
|
|
echo hey
|
|
;;
|
|
[!f]oo)
|
|
echo hey
|
|
;;
|
|
esac
|
|
|