Last active
May 13, 2016 00:53
-
-
Save zqqf16/8133f0db25a489551ea146effbf015b3 to your computer and use it in GitHub Desktop.
List all objective-c classes in static libraries.
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
#!/bin/bash | |
find ./ -name "*.a" | xargs nm -gU | sed -n -e 's/.*_OBJC_CLASS_$_\(.*\)/\1/p' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment