CocoaPods/cocoapods-packager

View on GitHub
scripts/lstconst.sh

Summary

Maintainability
Test Coverage
#!/bin/sh

#
# List symbols for all constants
#

nm "$@"|grep ' S '|grep -v 'OBJC\|\.eh$'| \
  cut -d_ -f2-|sort|uniq
nm "$@"|grep ' T '|cut -d_ -f2-|sort|uniq