Skip to content

Instantly share code, notes, and snippets.

@JimRoepcke
Created June 24, 2013 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JimRoepcke/5851621 to your computer and use it in GitHub Desktop.
Save JimRoepcke/5851621 to your computer and use it in GitHub Desktop.
This is what I get when selecting the shell script at http://www.doubleencore.com/2013/06/tutorial-finding-calls-to-uniqueidentifier-in-your-ios-app/ and copying it to the clipboard.
for match in $(grep -lR uniqueIdentifier *); do printf "File:%s\n\n" $match; otool -v -s __TEXT __objc_methname $match | grep uniqueIdentifier; printf "\n\n"; done; - See more at: http://www.doubleencore.com/2013/06/tutorial-finding-calls-to-uniqueidentifier-in-your-ios-app/#sthash.kV1BoNc0.dpuf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment