使用终端指令
2016-05-23 本文已影响13人
一黑
-
显示 MAC 内存, df -h
-
-l好像也有一定的作用
-
显示文件/文件夹 defaults write com.apple.finder AppleShowAllFiles -bool true 刷新终端 KillAll Finder
-
隐藏文件/文件夹 defaults write com.apple.finder AppleShowAllFiles -bool false 刷新终端 KillAll Finder
-
以 "."为文件名开头的文件自动隐藏
-
计算xcode文件行数
- 从文件中右击文件名点击 open with external editor 在终端中打开
-
cd 进入项目文件
3.找到所有要计算行数的文件 find . -name "*.swift" | xargs wc -l
- 使用 cocoapods 管理框架
- 打开文件目录
- pod init
- 使用 vim 控制文件,vim Podfile
4.打开关闭相关的注释,添加标注 pod 'AFNetworking' ,完成后 :wq! 退出操作(!强行)
5.使用 pod install --no-repo-update 安装文件