Skip to content

Latest commit

 

History

History
executable file
·
10 lines (8 loc) · 290 Bytes

grep.md

File metadata and controls

executable file
·
10 lines (8 loc) · 290 Bytes

grep

grep STRING FILE_NAME           # Find string in specific file.
grep -r STRING .                # Find string in all directory files.
grep -i STRING                  # Search without case sensitivity.
command | grep "foo"            # Search output of a command.

fzf