Skip to content

File Search and Pattern Search

Searching a Pattern in file

grep <pattern> /file/path

Searching a pattern in a file with line numbers

grep -n <pattern> /file/path

Count the number of appearances of pattern in a file

grep -c <pattern> /file/path