篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 在MAC OS X上显示和隐藏文件和文件夹相关的知识,希望对你有一定的参考价值。
## Show and hide files and folders on MAC OS X
1. Open Terminal found in Finder > Applications > Utilities
2. In Terminal, paste the following:
```
defaults write com.apple.finder AppleShowAllFiles YES
```
Press return
3. Hold the ‘Option/alt’ key, then right click on the Finder icon in the dock and click Relaunch.
This will show all hidden files. To hide them again, follow the same steps but replace the Terminal command with:
```
defaults write com.apple.finder AppleShowAllFiles NO
```
More details: https://ianlunn.co.uk/articles/quickly-showhide-hidden-files-mac-os-x-mavericks/
以上是关于markdown 在MAC OS X上显示和隐藏文件和文件夹的主要内容,如果未能解决你的问题,请参考以下文章