Tagged Questions
grep is the Unix/Linux tool to search through text files.
226
votes
23answers
7k views
Exploitable PHP functions
I'm trying to build a list of functions that can be used for arbitrary code execution. The purpose isn't to list functions that should be blacklisted or otherwise disallowed. Rather, I'd like to have ...
107
votes
7answers
20k views
grep a file, but show several surrounding lines?
I would like to grep for a string, but show the preceding 5 lines and following 5 lines as well as the matched line. I'm scanning for errors in a logfile, and want to see the context.
Any clues for ...
89
votes
17answers
76k views
grep --exclude/--include syntax (do not grep through certain files)
I'm looking for the string "foo=" (without quotes) in text files in a directory tree. It's on a common Linux machine, I have bash shell:
grep -ircl "foo=" *
In the directories are also many binary ...
84
votes
6answers
9k views
How to grep in the git history?
I have deleted a file or some code in a file sometime in the past. Can I grep in the content (not in the commit messages)?
A very poor solution is to grep the log:
git log -p | grep
However this ...
59
votes
13answers
10k views
How can I get `find` to ignore .svn directories?
I often use the find command to search through source code, delete files, whatever. Annoyingly, because Subversion stores duplicates of each file in its .svn/text-base/ directories my simple searches ...
53
votes
27answers
45k views
What are good grep tool for Windows?
Any recommendations on grep tools for Windows? Ideally ones that could leverage 64-bit OS.
I'm aware of cygwin, of course, and have also found PowerGREP, but I'm wondering if there are any hidden ...
30
votes
2answers
6k views
How to pipe stderr, and not stdout?
I have a problem that writes information to stdout and stderr, and I need to grep through what's coming to stderr, while disregarding stdout.
I can of course do it in 2 steps:
command > /dev/null ...
29
votes
4answers
17k views
Windows recursive grep command-line
I need to do a recursive grep in Windows, something like this in Unix/Linux:
grep -i 'string' `find . -print`
or the more-preferred method:
find . -print | xargs grep -i 'string'
I'm stuck with ...
26
votes
7answers
8k views
Exclude .svn directories from grep
When I grep my Subversion working copy directory, the results include a lot of files from the .svn directories. Is it possible to recursively grep a directory, but exclude all results from .svn ...
23
votes
5answers
19k views
using sed and grep to search and replace
I am using egrep -R followed by a regular expression containing about 10 unions, so like:
.jpg | .png | .gif etc... This works well. I would like to then replace all strings found with .bmp
I was ...
21
votes
2answers
4k views
How to grep git commits for a certain word
In a Git code repository I want to list all commits that contain a certain word
I tried this:
git log -p | grep --context=4 "word"
but it does not necessarily give me back the filename (unless ...
18
votes
5answers
5k views
18
votes
5answers
20k views
count all occurrences of string in lots of files with grep
I have a bunch of log files. I need to find out how many times a string occurs in all files.
grep -c string *
retruns
...
file1:1
file2:0
file3:0
...
Using pipe I was able to get only files that ...
17
votes
4answers
2k views
regex matching irreducible fraction
How can I match irreducible fraction with regex?
For example, 23/25, 3/4, 5/2, 100/101, etc.
First of all, I have no idea about gcd-algorithm realisation in regex.
UPD: for all answer like "You are ...
15
votes
4answers
1k views
ack misses results (vs. grep)
I'm sure I'm misunderstanding something about ack's file/directory ignore defaults, but perhaps somebody could shed some light on this for me:
mbuck$ grep logout -R app/views/
Binary file ...
15
votes
7answers
12k views
Can grep show only words that match search pattern?
Is there a way to make grep output "words" from files that match the search expression?
If I want to find all the instances of, say, "th" in a number of files you do;
grep "th" *
but the output ...
14
votes
2answers
144 views
open 100 files in vim
I need to grep to tons (10k+) of files for specific words.
now that returns a list of files that i also need to grep for another word.
i found on that grep can do this so i use:
grep -rl word1 *
...
14
votes
6answers
3k views
Colorized grep — viewing the entire file with highlighting
I find grep's --color=always flag to be tremendously useful. However, grep only prints lines with matches (unless you ask for context lines). Given that each line it prints has a match, the ...
13
votes
21answers
11k views
Is there a Pattern Matching Utility like GREP in Windows?
Is there a similar utility to grep available from the Windows Command Prompt, or there is third party tool for it?
12
votes
3answers
147 views
Apache grep big log file
I need to parse Apache log file to look for specific suspicious patterns (like SQL injections).
For example I'm looking for id='%20or%201=1;
I am using grep to check the log file for this pattern ...
12
votes
4answers
4k views
How Do I grep For non-ASCII Characters in UNIX
I have several very large XML files and I'm trying to find the lines that contain non-ASCII characters. I've tried the following:
grep -e "[\x{00FF}-\x{FFFF}]" file.xml
But this returns every line ...
12
votes
6answers
11k views
Capturing Groups From a Grep RegEx
I've got this little script in sh (Mac OSX 10.6) to look through an array of files. Google has stopped being helpful at this point:
files="*.jpg"
for f in $files
do
echo $f | grep -oEi ...
12
votes
1answer
2k views
How do I view all ignored patterns set with svn:ignore recursively in an svn repository?
I see it is possible to view a list of properties set on every directory within an SVN repository using proplist and the -R flag (recursive) and -v flag (verbose):
svn proplist -Rv
This shows me ...
11
votes
3answers
323 views
How can I use back references with `grep` in R?
I am looking for an elegant way of returning back references using regular expressions in R. Le me explain:
Let's say I want to find strings that start with a month name:
x <- c("May, 1, 2011", ...
11
votes
2answers
492 views
What's the easiest way to get an equivalent to GNU grep that supports negative lookbehinds?
I'm trying to grep through a bunch of files in nested subdirectories to look for regular expression matches; my regex requires negative lookbehind.
Perl has negative lookbehind, but as far as I can ...
11
votes
3answers
13k views
What is makeinfo, and how do I get it?
I'm trying to build GNU grep, and when I run make, I get:
[snip]
/bin/bash: line 9: makeinfo: command not found
What is makeinfo, and how do I get it?
(This is Ubuntu, if it makes a difference)
10
votes
5answers
291 views
C - How to find all inner loops using grep?
I have a giant C project with numerous C files. I have to find all inner-loops. I am sure there is no any O(n³) block in the project, so only O(n²)-compexity blocks must be found (a loop in a loop).
...
10
votes
3answers
680 views
How to use grep efficiently?
I have a large number of small files to be searched. I have been looking for a good de-facto multi-threaded version of grep but could not find anything. How can I improve my usage of grep? As of now I ...
10
votes
2answers
7k views
(grep) Regex to match non-ascii characters?
On linux i have a directory with lots of files. Some of them have nonASCII characters, but they are all valid UTF8. One programme has a bug that prevents it working with nonASCII filenames, I have to ...
10
votes
2answers
2k views
PowerShell search script that ignores binary files
I am really used to doing grep -iIr on the Unix shell but I haven't been able to get a PowerShell equivalent yet.
Basically, the above command searches the target folders recursively and ignores ...
9
votes
4answers
260 views
How do I grep for entire, possibly wrapped, lines of code?
When searching code for strings, I constantly run into the problem that I get meaningless, context-less results. For example, if a function call is split across 3 lines, and I search for the name of ...
9
votes
4answers
10k views
how do i grep recursively
how do i recursively grep all directories and subdirectories ?
find . | xargs grep "texthere" *
9
votes
4answers
6k views
Multiple grep search/ignore patterns
I usually use the following pipeline to grep for a particular search string and yet ignore certain other patterns:
grep -Ri 64 src/install/ | grep -v \.svn | grep -v "file"| grep -v "2\.5" | grep -v ...
9
votes
3answers
12k views
Linux pipe output to grep
I want to pipe the output of grep as the search patter for another grep.
As an example:
grep <Search_term> <file1> | xargs grep <file2>
I want the output of the first grep as the ...
9
votes
6answers
11k views
Quick unix command to display specific lines in the middle of a file?
Trying to debug an issue with a server and my only log file is a 20GB log file (with no timestamps even! Why do people use System.out.println() as logging? In production?!)
Using grep, I've found an ...
9
votes
4answers
1k views
Colored grep?
Sometimes coloring a logfile or other gives a good overview when looking for stuff and behaviors
I just saw that grep have a coloring feature
grep -C 99999 --color <regexp> <filename>
...
8
votes
6answers
2k views
using grep and sed to find and replace a string
Hi
I am using the following to search a directory recursively for specific string and replace it with another:
grep -rl oldstr path | xargs sed -i 's/oldstr/newstr/g
this works okay. the only ...
8
votes
5answers
3k views
How to search contents of multiple pdf files?
Ho could I search the contents of pdf files in a directory/subdirectory. Looking for some command line tools. It seems grep cant search pdf files.
8
votes
7answers
3k views
How to find patterns across multiple lines using grep?
I want to find files that have "abc" AND "efg" in that order, and those two strings are on different lines in that file. Eg: a file with content:
blah blah..
blah blah..
blah abc blah
blah blah..
...
8
votes
3answers
490 views
Why does Perl's shift complain 'Type of arg 1 to shift must be array (not grep iterator).'?
I've got a data structure that is a hash that contains an array of hashes. I'd like to reach in there and pull out the first hash that matches a value I'm looking for. I tried this:
my $result = ...
8
votes
3answers
7k views
How do you pipe input through grep to another utility?
I am using 'tail -f' to follow a log file as it's updated:
tail -f logfile
I next pipe the output of that to grep to show only the lines containing a search term ("org.springframework" in this ...
8
votes
13answers
964 views
How do you grep through code that lives in many different directories?
I'm working on a Python program that makes heavy use of eggs (Plone). That means there are 198 directories full of Python code I might want to search through while debugging. Is there a good way to ...
8
votes
5answers
7k views
Linux command line global search and replace
I'm trying to search and replace a string in all files matched by grep on a linux machine. I've got some pieces of what I want to do, but I'm unsure how best to string them all together.
grep -n ...
8
votes
3answers
912 views
Useful regular expression tutorial
Is there a good tutorial on using regular expressions, especially with grep? I tried googling for some, but most tutorials are too basic and cover things I already know.
7
votes
3answers
147 views
Perl splitting array based on condition using grep
I have some perl code that looks something like this:
my @array = map { rand } ( 1..100 );
my @matching = grep { $_ == $condition } @array;
@array = grep { $_ != $condition } @array;
This works ok, ...
7
votes
5answers
232 views
How do I add a line of text to the middle of a file using bash?
I'm trying to add a line of text to the middle of a text file in a bash script. Specifically I'm trying add a nameserver to my /etc/resolv.conf file. As it stands, resolv.conf looks like this:
# ...
7
votes
4answers
134 views
Do not merge the context of contiguous matches with grep
If I run grep -C 1 match over the following file:
a
b
match1
c
d
e
match2
f
match3
g
I get the following output:
b
match1
c
--
e
match2
f
match3
g
As you can see, since the context around the ...
7
votes
2answers
548 views
how do I grep in R?
I would like to choose rows based on the subsets of their names, for example
If I have the following data:
data <- structure(c(91, 92, 108, 104, 87, 91, 91, 97, 81, 98),
.Names = c("fee-", "fi", ...
7
votes
2answers
263 views
What are R's equivalents to Perl's map and grep?
I am interested in (functional) vector manipulation in R. Specifically, what are R's equivalents to Perl's map and grep?
The following Perl script greps the even array elements and multiplies them ...
7
votes
5answers
590 views
Listing C/C++ functions (Code analysis in Unix)
Whether we're maintaining unfamiliar code or checking out the implementation details of an Apache module it can help if we can quickly traverse the code and build up an overview of what we're looking ...