Created
October 5, 2016 14:57
-
-
Save tjunghans/50178c28e02364f374bad77c1edf4625 to your computer and use it in GitHub Desktop.
Find string in a directory recursively
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 . -type f -print0 | xargs -0 grep -l "needle" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment