Created
August 4, 2013 15:02
-
-
Save Kjuly/6150596 to your computer and use it in GitHub Desktop.
Use grep to search "THE_TARGET_CONTENT" in all files. It'll list all files that include the content
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
// Search "THE_TARGET_CONTENT" in all .m files | |
find . -type f -iname "*.m" -exec grep -i "THE_TARGET_CONTENT" {} + |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment