1
0
mirror of https://github.com/cheat/cheat.git synced 2025-02-15 15:11:15 +01:00
cheat/cheatsheets/grep

12 lines
224 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