Files
clamav/libclamav/c++/llvm/test/Scripts/not
2009-08-31 11:39:46 +03: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