-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
df: add traditional Chinese translation (#8626)
- Loading branch information
1 parent
e771ca4
commit 517c704
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# df | ||
|
||
> 概述檔案系統的磁碟空間的使用情況。 | ||
> 更多資訊:<https://www.gnu.org/software/coreutils/df>. | ||
- 顯示所有檔案系統及磁碟使用情況: | ||
|
||
`df` | ||
|
||
- 以人類可讀的形式顯示所有檔案系統及磁碟使用情況: | ||
|
||
`df -h` | ||
|
||
- 顯示包含給定檔案或目錄的檔案系統及其磁碟的使用情況: | ||
|
||
`df {{檔案或目錄/完整/路徑}}` | ||
|
||
- 顯示未被使用的 inode 數量的統計資訊: | ||
|
||
`df -i` | ||
|
||
- 顯示檔案系統但排除指定類型: | ||
|
||
`df -x {{squashfs}} -x {{tmpfs}}` |