- Sep 20, 2004
-
-
Reid Spencer authored
specification was too liberal in some areas and missing things in others. This specification is based on the actual extensions found in the source tree. llvm-svn: 16443
-
Reid Spencer authored
allowing the set of directories searched to be specified either by the LLVMDO_DIRS env var or by the -dirs "dirs..." command line option. llvm-svn: 16441
-
- Sep 18, 2004
-
-
Chris Lattner authored
llvm-svn: 16391
-
- Jul 27, 2004
-
-
Reid Spencer authored
This is like llvmgrep but instead of running grep, it runs the command given by the first argument. For example, to find the top ten files with the most lines in llvm, you could: utils/llvmdo wc -l | sort -nb | tail Or, to find any source files with the wrong permissions, you could: utils/llvmdo ls -l | grep -v rw-r--r-- Hopefully, you get the idea. llvm-svn: 15246
-
- Jul 07, 2004
-
-
Reid Spencer authored
llvm-svn: 14676
-
- Jun 19, 2004
-
-
Reid Spencer authored
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. llvm-svn: 14255
-