Created
October 1, 2020 18:46
-
-
Save jamesholcomb/9c374ae997ea01278cf6ff36dfc04b57 to your computer and use it in GitHub Desktop.
Bash functions
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
#!/bash/bin | |
# Recursively find all occurences of X in all *.js files excluding node_modules | |
egrep -lir --include=*.js "X" --exclude-dir="node_modules" . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment