We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd31d8a commit 8e48fa0Copy full SHA for 8e48fa0
1 file changed
book.wiki/docs/coding-practice/mac.md
@@ -27,6 +27,33 @@ title: "Mac"
27
28
[如何在 Mac 上强制退出 App](https://support.apple.com/zh-cn/102586)
29
30
+### 查看隐藏文件
31
+
32
+方法一:使用快捷键
33
34
+在 Finder 中按下:
35
36
+⌘ Command + ⇧ Shift + .(英文句号)
37
38
+再次按一次会隐藏它们,相当于开关。
39
40
+方法二:使用终端命令永久开启
41
42
+1. 打开「终端 Terminal」
43
+2. 输入以下命令并回车:
44
45
+```bash
46
+defaults write com.apple.finder AppleShowAllFiles -bool true
47
+killall Finder
48
+```
49
50
+3. 若想关闭显示隐藏文件:
51
52
53
+defaults write com.apple.finder AppleShowAllFiles -bool false
54
55
56
57
## 查看系统数据占用
58
59
最近遇到一个问题,突然磁盘满了,直接显示 no space left on device. 排查了半天也不知道是什么东西把磁盘写满了。
0 commit comments