llvm-6502/test/Scripts/not

13 lines
179 B
Plaintext
Raw Normal View History

#!/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