otool&grep
0x01查看ipa是否已经砸壳。解压ipa包,找到.app显示包内容,找到Mach-O文件(与ipa包同名的无后缀名的可执行文件):
otool -l Mach-O文件路径 | grep crypt
效果如下,cryptid为0则已经砸壳,为1未砸壳:
tree
0x01tree,可查看当前目录结构树。
安装:
homebrew install tree
使用:
cd 想查看的目录下
tree
lipo
0x01合并真机、模拟器framework
lipo -create 真机framework中的无后缀名文件 模拟器framework中的无后缀名文件 -output 真机framework中的无后缀名文件
0x02查看framework支持的cpu架构
lipo -info framework中的无后缀名文件
chmod
0x01提升指定文件权限到777
chmod 777 文件路径
pod
0x01检查podspec是否合法
cd podspec文件所在目录
pod spec lint podspec文件路径
file
0x01查看指定文件的文件格式
file 文件路径
例:动态库都是Mach-O格式的
fastlane
0x01执行特定的lane,格式:fastlane [target名称] [lane名称]
,例:
fastlane ios dev