macOS初体验——显示被隐藏的文件
字数统计:37 阅读时长 ≈ 1分钟under 默认分类 tag Published on March 22nd , 2021 at 08:44 pm
方法
创建两个shell脚本
show.sh
defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder
hide.sh
defaults write com.apple.finder AppleShowAllFiles -boolean false ; killall Finder
然后在.bash_profile中设置别名:
alias show=/yourpath/show.sh
alias hide=/youpath/hide.sh
source之后可以在终端中通过show和hide来隐藏和显示隐藏文件
本文由simyng创作,
采用知识共享署名4.0 国际许可协议进行许可,转载前请务必署名
文章最后更新时间为:March 22nd , 2021 at 12:49 pm