Skip to content

Instantly share code, notes, and snippets.

View mmcgraw73's full-sized avatar
🫏
the donkey

Michael McGraw mmcgraw73

🫏
the donkey
View GitHub Profile
@mmcgraw73
mmcgraw73 / grep.md
Last active April 10, 2019 13:12 — forked from isyufu/grep.sh
grep cheat sheet

GENERAL

print lines begining with range of letters

grep ^[A-D] table.txt

REGEX

search for word which has any single character followed by ello

grep ".ello" demo.txt

OR, all the below examples produce the same results