Last active
January 26, 2017 09:38
-
-
Save mofas/74976ebb4439ec8549e34b5ee44a1676 to your computer and use it in GitHub Desktop.
Use Grep for Fast Search from the Command Line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find src -name "*.js" | xargs grep "immutable" | |
grep -n "#" -A 2 -B 2 *.md | |
grep -n "#" -C 2 *.md |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment