博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mac OS finder : 显示和隐藏文件[夹] show and hide files or folders
阅读量:6160 次
发布时间:2019-06-21

本文共 881 字,大约阅读时间需要 2 分钟。

Finder默认是不显示隐藏文件[夹]的,要显示出怎么办?

要显示的话,可以GUI(graphic user interface)和CLI(command line interface)两种方式

CLI:

显示Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool true

隐藏Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool false

为了方便,将命令添加到.bash_profile

show='defaults write com.apple.finder AppleShowAllFiles -bool true'

hide='defaults write com.apple.finder AppleShowAllFiles -bool false'

就像ubuntu种有配置的查看器一样,Mac也当然有的

点击Finder,按下Control(^)+Shift+G,输入/Library/Preferences,找到com.apple.finder.plist文件,用Xcode.app打开,修改。

GUI:(OnyX) Parameters->Finder-> Misc. options-> Show hidden files and folders

 

 

 

Published at 2015.1.9 Environment:Mac OS Yosemite 10.10.1/2 iMac

Reference:

1. http://www.cnblogs.com/lm3515/archive/2010/12/08/1900271.html

2. http://tynetwork.blog.163.com/blog/static/169130247201073113315474/

 

转载于:https://www.cnblogs.com/raybiolee/p/4213787.html

你可能感兴趣的文章
售前工程师的成长---一个老员工的经验之谈
查看>>
Get到的优秀博客网址
查看>>
老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
查看>>
Python学习--time
查看>>
在OSCHINA上的第一篇博文,以后好好学习吧
查看>>
Spring常用注解
查看>>
linux:yum和apt-get的区别
查看>>
Sentinel 1.5.0 正式发布,引入 Reactive 支持
查看>>
数据库之MySQL
查看>>
2019/1/15 批量删除数据库相关数据
查看>>
数据类型的一些方法
查看>>
Webpack 2 中一些常见的优化措施
查看>>
移动端响应式
查看>>
js中var、let、const的区别
查看>>
简洁优雅地实现夜间模式
查看>>
react学习总结
查看>>
在soapui上踩过的坑
查看>>
MySQL的字符集和字符编码笔记
查看>>
ntpd同步时间
查看>>
Maven编译时跳过Test
查看>>