bash:files:search_files_for_specific_text
This is an old revision of the document!
Table of Contents
BASH - Files - Search files for specific text
Simple Search
Print all lines containing the keyword test:
grep test file.txt
Search with many keywords
Create a file that has all the keywords, one per line and run:
grep -f keywords.txt file.txt
Search using read
Process a file line by line, exit if the line is found:
while read line; do echo $line | grep test && break; done < file.txt
bash/files/search_files_for_specific_text.1611679125.txt.gz · Last modified: 2021/01/26 16:38 by peter