Recursive grep in a directory on macOS

If you need to look for a literal string in a directory and all its subdirectories, use grep -rF "your.literal.string" . -r or –recursive: Recursively read all files under each directory. -F or –fixed-strings: Treat the pattern as a literal string (not a regular expression). This is important if your string contains characters like .… Continue reading Recursive grep in a directory on macOS