mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-10-31 09:11:13 +00: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
|