This might sound like a silly question but If you have a thirdParty.framework file, can you tell if it\'s static or dynamic? I mean, do they look different if you look insid
I use this command to list all STATIC Frameworks from a path with a list of frameworks:
find -E . -type f -iregex ".*\.framework\/[^./]*" -exec file {} \; | grep ': current ar archive' | sed 's/.*\/\(.*.framework\).*/\1/'