cd
cd /usr/local/bin 进入到本地bin目录
cd (不带参数)进入root根目录
cd ~ 进入root根目录
cd - 返回上一个访问的目录
cd .. 进入上级目录
cd+拖动文件到命令行 进入当前文件目录
open
open . 打开当前目录文件,在Finder中显示
设置Finder显示隐藏文件
cd到根目录,执行命令
defaults write com.apple.finder AppleShowAllFiles -bool true
findder 快捷键:commond + shift + .
显示
cd到任意文件,执行命令ls
ls 列出当前目录下所有文件
关机
立即关机
sudo shutdown -h now
sudo halt
10分钟后关机
sudo shutdown -h +10
晚上8点关机
sudo shutdown -h 20:00
重置macOS音频核心法
sudo killall coreaudiod
打开profile文件
sudo vim /etc/profile
使命令生效 == 重启终端
source /etc/profile
Mac .bash_profile中修改的环境变量只对当前窗口有效。自从MacOS Monterey12.5.0后,mac系统已经默认把zshrc作为系统级入口,.zshrc在电脑每次自启时都会生效(永久有效)。一般会在~/.zshrc中添加source ~/.bash_profile,以确保.bash_profile中的修改永久生效。
cd /etc