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