mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
504ffdce51
llvm-svn: 6956
13 lines
179 B
Bash
Executable File
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
|