DEBSOURCES
Skip Quicknav
sources / devscripts / 2.23.4%2Bdeb12u2 / test / bashisms / negations.sh
1234567891011
#!/bin/sh case "moo" in [^f]oo) # BASHISM echo hey ;; [!f]oo) echo hey ;; esac