我想尽可能多地了解有关给定Application bundle .app的技术信息,例如:
QuickLook插件显示有关.app的广泛信息是理想的,但我不知道。
答案 0 :(得分:2)
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