#!/bin/sh # # Program: not # # Synopsis: Inverse the output of the program specified on the command line # # Syntax: not command if "$@" then exit 1 else exit 0 fi