Remove obsolete script

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6967 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-06-28 23:32:28 +00:00
parent 060c1f816c
commit 3f6795e5ea

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