我想尽可能多地了解有关给定应用程序包 .app 的技术信息,例如:
- 使用的编译器
- 使用的框架
- 实施细节
显示有关 .app 的大量信息的 QuickLook 插件是理想的,但我不知道。
我想尽可能多地了解有关给定应用程序包 .app 的技术信息,例如:
显示有关 .app 的大量信息的 QuickLook 插件是理想的,但我不知道。
nm -u /Applications/.app/Contents/MacOS/executable | sort | less
nm -g -j executable | sort | uniq | less
otool -L executable
otool -ov executable | less
otool -tvV executable | less
class-dump -A executable | less