美文网首页
Mac的一些使用技巧

Mac的一些使用技巧

作者: holaOla | 来源:发表于2015-10-06 20:09 被阅读52次

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

相关文章

网友评论

      本文标题:Mac的一些使用技巧

      本文链接:https://www.haomeiwen.com/subject/qstncttx.html