mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
13 lines
179 B
Plaintext
13 lines
179 B
Plaintext
|
#!/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
|