MacOS六个常用的终端命令

不管是 Mac 还是 Linux 命令,都是由英文单词组成,只要稍微懂些英文,通常从命令名称就可以看出其功能。但是常用终端命令很多,不可能熟练掌握所有命令。下面就从网络上总结了一些非常实用的 Mac OS几种常用的终端命令,分享给大家。

MacOS六个常用的终端命令_第1张图片

苹果系统使用技巧

1: 显示隐藏文件

defaults write com.apple.finder AppleShowAllFiles -bool YES && killall Finder

2: 改变截屏格式

defaults write com.apple.screencapture type jpg && killall SystemUIServer

3: 改变截屏文件名字:

defaults write com.apple.screencapture name hello

4: 改变截屏文件保存位置:

defaults write com.apple.screencapture location ~

5: 隐藏所有的桌面图标

defaults write com.apple.finder CreateDesktop -bool false && killall Finder

6: 给 Dock 栏加空

defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' && killall Dock

你可能感兴趣的:(Mac应用技巧,mac,MacOS,Mac终端,终端命令)