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