Search Results

0
votes

Egrep acts strange with -f option

The others have already come up with most of the things I would look at. The next thing I would check is the environment variable GREP_OPTIONS, or whatever it is called on your machine. I've gotten …
0
votes

How do I write a bash alias/function to grep all files in all subdirectories for a string?

Many versions of grep have options to do recursion, specify filename pattern, etc. grep --perl-regexp --recursive --include='*.py' --regexp="$1" . This recurses st …