not: negate the output value of a program.

This commit is contained in:
Ole Tange 2012-12-03 14:16:03 +01:00
parent 5777fa9159
commit 75ac15c2af

9
not/not Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
if "$@"; then
exit 1
else
exit 0
fi