If I go into /etc/apache2/ and type grep -rl 'LoadModule php' ./* then I'll only see ./mods-available/php7.0.load. If I change r to R then I'll see
./mods-available/php7.0.load
./mods-enabled/php7.0.loadBoth of these are plain directories. I'd expect -r to cause grep to recurse all files/dirs in the PWD. What's going on with -r? I'm minded to just always use -R at this point.
2 Answers
According to manpage of grep:
-r, --recursive
Read all files under each directory, recursively, following symbolic links only if they are on the command line. Note that if no file operand is given, grep searches the working directory. This is equivalent to the -d recurse option.-R, --dereference-recursive
Read all files under each directory, recursively. Follow all symbolic links, unlike -r.
Example:
I have a folder test in which there is a file 1.txt. 2.txt is a symbolic link to 1.txt such that output of ls -l test looks like:
-rw-r--r-- 1 kulfy kulfy 15 Jun 12 21:53 1.txt
lrwxrwxrwx 1 kulfy kulfy 5 Jun 12 21:53 2.txt -> 1.txtThe content of 1.txt is:
This is a file.If I want to search for "file" string in files inside test folder and I run:
grep "file" testI'll encounter an error:
grep: test: Is a directoryBut if I do:
grep -R "file" testI get an output:
test/2.txt:This is a file
test/1.txt:This is a fileOn the other hand if I run:
grep -r "file" testI get output:
test/1.txt:This is a fileHere, I haven't explicitly mentioned to scan all the files. So, when I used R flag, symbolic link (here 2.txt) was respected and output was generated. But when I used r flag, symbolic link was ignored simply because I didn't mention to scan 2.txt also.
From GNU grep v2.11-8 and above, if invoked with -r excludes symlinks not specified on the command line and includes them when invoked with -R (source).
From manual page (man grep):
-r,--recursiveRead all files under each directory, recursively, following symbolic links only if they are on the command line. Note that if no file operand is given, grep searches the working directory. This is equivalent to the -d recurse option.
-R,--dereference-recursiveRead all files under each directory, recursively. Follow all symbolic links, unlike-r.