mirror of
https://github.com/Erreur32/cheat.git
synced 2024-12-23 06:02:12 +01:00
2592e8face
Removed cat file | grep pattern as cat file is unnecessary. The command becomes 'grep pattern file' again - which is the same as the first example. Updated #Advanced description to be more descriptive.
5 lines
101 B
Text
5 lines
101 B
Text
# Basic
|
|
grep pattern file
|
|
|
|
# Recursively grep for string <pattern> in folder/
|
|
grep -R pattern folder
|