blob: e3b1efe35c8d1462b129be58765ca1f4fa53df0c [file] [log] [blame]
Chris Lattner2b142bd2003-06-28 22:52:52 +00001#!/bin/sh
2#
3# Program: not
4#
5# Synopsis: Inverse the output of the program specified on the command line
6#
7# Syntax: not command <arguments>
8
9if "$@"
10then exit 1
11else exit 0
12fi