grep
global regular expression print
EX: grep -il 'guavaberries\|optional'
options share a dash
- -i case sensitive search
- -l display the name of the file containing search result
- -il combines the above two commands
- \| "or", searches for two things at the same time
back