Answers for "how to search for a word in all files in a directory in linux"

1

how to search for a word in all files in a directory in linux

# this will search all subdirectories for text (no case sensitivity)
grep -inR "your text" .
Posted by: Guest on March-23-2021

Code answers related to "how to search for a word in all files in a directory in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language