| Chris Lattner | 2b142bd | 2003-06-28 22:52:52 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # | ||||
| 3 | # Program: not | ||||
| 4 | # | ||||
| 5 | # Synopsis: Inverse the output of the program specified on the command line | ||||
| 6 | # | ||||
| 7 | # Syntax: not command <arguments> | ||||
| 8 | |||||
| 9 | if "$@" | ||||
| 10 | then exit 1 | ||||
| 11 | else exit 0 | ||||
| 12 | fi | ||||