Last active
March 21, 2019 10:32
-
-
Save ConorSheehan1/d367d16ad96628808f85f44233418c95 to your computer and use it in GitHub Desktop.
grep within glob files
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, find import in every .py file recursively under the current dir | |
grep -rin --include="*.py" import | |
# find files bye name and follow symlinks | |
find -L ./ -name "*.sublime-snippet" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment