Grep Flashcards
1
Q
Grep: how to search for “search” in file?
A
grep search filename
2
Q
Grep: how to ignore case?
A
-i
3
Q
Grep: how to search recursively?
A
-r
or
-R
4
Q
Grep: how to search for whole word only?
A
-w
5
Q
Grep: how to search for two different words?
A
grep -w ‘word1|word2’ filename
6
Q
Grep: how to list filenames of matches only?
A
-l