cheat/cheatsheets/grep

16 lines
371 B
Plaintext
Raw Normal View History

# Basic:
grep pattern file
2013-09-06 16:53:36 +02:00
# case nonsensitive research:
grep -i pattern file
# Recursively grep for string <pattern> in folder:
grep -R pattern folder
2013-09-06 16:53:36 +02:00
# Getting pattern from file (one by line):
grep -f pattern_file file
2013-11-25 13:44:30 +01:00
# Find all files who contain {pattern} in the directory {directory}.
# This will show: "file:line my research"
grep -rnw 'directory' -e "pattern"