aboutsummaryrefslogtreecommitdiffstats
path: root/utils/llvmgrep
Commit message (Collapse)AuthorAgeFilesLines
* Fix some thinkos in the script (error handling, proper argument handling).Reid Spencer2004-07-071-2/+4
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14676 91177308-0d34-0410-b5e6-96231b3b80d8
* A utility to search the LLVM source tree for a grep pattern. This is aReid Spencer2004-06-191-0/+22
replacement for getsrcs.sh which now generates too much text to put on a Linux command line. The approach taken with llvmgrep is to execute a find command and execute a grep on each file that matches the name pattern. The arguments to this script are the same as those of egrep. Note that the -H and -n options to egrep will always be passed so that you always get the file and line number of matches. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14255 91177308-0d34-0410-b5e6-96231b3b80d8