找到class-dump所在的目錄,比如~/Desktop/class-dump,使用命令:
cd ~/Desktop
使用如下命令將class-dump拷貝到目錄/usr/bin:
sudo cp -f class-dump /usr/bin
執(zhí)行命令后查乒,提示如下:
cp: /usr/bin/class-dump: Operation not permitted
原因:OSX 10.11之后在配置class-dump的時(shí)候事甜,會(huì)發(fā)現(xiàn)要將class-dump订歪,copy到目錄/usr/bin不被允許,權(quán)限問(wèn)題年局。
解決辦法:
1.打開(kāi)Terminal际看,輸入mkdir ~/bin,在當(dāng)前用戶根目錄下創(chuàng)建一個(gè)bin目錄某宪;
2.把class-dump給拷貝到這個(gè)目錄里仿村,并賦予其可執(zhí)行權(quán)限:mv /path/to/class-dump ~/bin; chmod +x ~/bin/class-dump;
3.打開(kāi)~/.bash_profile文件:vi ~/.bash_profile兴喂,在文件最上方加一行:export PATH=$HOME/bin/:$PATH蔼囊,然后保存并退出(在英文輸入法中依次按下esc和:(shift + ;,即冒號(hào))衣迷,然后輸入wq畏鼓,回車即可);
4.在Terminal中執(zhí)行source ~/.bash_profile壶谒;
上面的操作把~/bin路徑給加入了環(huán)境變量云矫,測(cè)試一下:
? ~/ class-dump
class-dump 3.5 (64 bit) (Debug version compiled Jul 6 2017 22:22:07)
Usage: class-dump [options] <mach-o-file>
where options are:
-a show instance variable offsets
-A show implementation addresses
--arch <arch> choose a specific architecture from a universal binary (ppc, ppc64, i386, x86_64, armv6, armv7, armv7s, arm64)
-C <regex> only display classes matching regular expression
-f <str> find string in method name
-H generate header files in current directory, or directory specified with -o
-I sort classes, categories, and protocols by inheritance (overrides -s)
-o <dir> output directory used for -H
-r recursively expand frameworks and fixed VM shared libraries
-s sort classes and categories by name
-S sort methods by name
-t suppress header in output, for testing
--list-arches list the arches in the file, then exit
--sdk-ios specify iOS SDK version (will look for /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS<version>.sdk
or /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS<version>.sdk)
--sdk-mac specify Mac OS X version (will look for /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX<version>.sdk
or /Developer/SDKs/MacOSX<version>.sdk)
--sdk-root specify the full SDK root path (or use --sdk-ios/--sdk-mac for a shortcut)
? ~/