Finder
隐藏文件
bash中输入下列命令,可以使Finder显示隐藏文件。
开启:
defaults write com.apple.finder AppleShowAllFiles -bool true;killall Finder
关闭:
defaults write com.apple.finder AppleShowAllFiles -bool false;killall Finder
完整路径
在Finder上显示当前文件夹的完整路径。
开启:
defaults write com.apple.finder _FXShowPosixPathInTitle -bool TRUE;killall Finder
关闭:
defaults delete com.apple.finder _FXShowPosixPathInTitle;killall Finder
开发配置
使用ll、la、l等ls的别名命令
在用户目录下的配置脚本文件(~/.zshrc 、~/.bashrc 或者 ~/.bash_profile )中添加以下内容即可:
cd ~
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
source .zshrc
#source .bashrc
#source .bash_profile
查看Mac中JAVA_HOME路径
/usr/libexec/java_home -V