Skip to content

Instantly share code, notes, and snippets.

@zqqf16
Last active May 13, 2016 00:53
Show Gist options
  • Save zqqf16/8133f0db25a489551ea146effbf015b3 to your computer and use it in GitHub Desktop.
Save zqqf16/8133f0db25a489551ea146effbf015b3 to your computer and use it in GitHub Desktop.
List all objective-c classes in static libraries.
#!/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