Remove obsolete script

llvm-svn: 6967
This commit is contained in:
Chris Lattner 2003-06-28 23:32:28 +00:00
parent 59b1ec155a
commit 8138e135b6

View File

@ -1,19 +0,0 @@
#!/bin/sh
#
# Program: grep-not
#
# Synopsis: Search the input to the program for a regular expression, working
# just like grep. The only difference is that we return success if
# the pattern was not found, and failure if it was. This is useful
# for TestRunner tests which want to make sure something DOES NOT
# occur in the output of a command.
#
# Syntax: The same as grep
if grep "$@"
then exit 1
else exit 0
fi