freebsd-skq/test/Scripts/not
2009-06-02 17:52:33 +00:00

13 lines
179 B
Bash
Executable File

#!/bin/sh
#
# Program: not
#
# Synopsis: Inverse the output of the program specified on the command line
#
# Syntax: not command <arguments>
if "$@"
then exit 1
else exit 0
fi