Answers for "bash search string in file at line"

6

linux search for line in file

grep -R "keyword" /directory/
Posted by: Guest on May-28-2020
0

bash find text in specific file

find <your directory path> -name "*.file_type" -type f | xargs grep "word"
Posted by: Guest on October-26-2020

Code answers related to "bash search string in file at line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language