mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
35f7ba9120
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6954 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
469 B
Bash
Executable File
20 lines
469 B
Bash
Executable File
#!/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
|
|
|
|
|
|
|