It’s a neat and powerful command that all *nix users should know.
>> grep -rn “keyword” *
This does a search for the keyword.
* = all files
-r = recursive (for all child directories)
-n = show line numbers
It’s a neat and powerful command that all *nix users should know.
>> grep -rn “keyword” *
This does a search for the keyword.
* = all files
-r = recursive (for all child directories)
-n = show line numbers