$ pwd
当前工作目录
$ cd
进root
$ cd /Users/springlzi/Desktop
进入文件夹Desktop
$ cd ..
上级目录
$ cd ~
返回root
$ cd -
返回上一个访问的目录
$ rm 文件名
删除文件
$ cat 文件名
在终端下查看文件
$ ls
列出目录下所有文件
$ cp 文件名 目标目录
将文件拷贝到目标目录下
$ mkdir 文件夹名
新建文件夹
$ rmdir 文件夹名
删除文件夹
$ g++ 源文件名
编译源文件,产生a.out
$ ./文件名
运行 例如:./a.out < 输入文件名 > 输出文件名
control+d 中断a.out运行
$ defaults write com.apple.finder AppleShowAllFiles -bool true
显示Mac隐藏文件的命令
$ defaults write com.apple.finder AppleShowAllFiles -bool false
隐藏Mac隐藏文件的命令
$ defaults write com.apple.finder AppleShowAllFiles YES
显示Mac隐藏文件的命令
$ defaults write com.apple.finder AppleShowAllFiles NO
隐藏Mac隐藏文件的命令
~代表root 如:~/Document/CPP2/