-
-
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 Chinese translation (#15488)
- Loading branch information
Showing
1 changed file
with
28 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,28 @@ | ||
# df | ||
|
||
> 显示文件系统磁盘空间使用情况的概览。 | ||
> 更多信息:<https://www.gnu.org/software/coreutils/df>. | ||
- 显示磁盘使用情况: | ||
|
||
`df` | ||
|
||
- 以可读的形式显示磁盘使用情况: | ||
|
||
`df {{-h|--human-readable}}` | ||
|
||
- 显示给定文件或目录的磁盘使用情况: | ||
|
||
`df {{路径/到/文件或目录}}` | ||
|
||
- 包括空闲 inode 数量的统计信息: | ||
|
||
`df {{-i|--inodes}}` | ||
|
||
- 显示文件系统但排除指定的类型: | ||
|
||
`df {{-x|--exclude-type}} {{squashfs}} {{-x|--exclude-type}} {{tmpfs}}` | ||
|
||
- 显示文件系统类型: | ||
|
||
`df {{-T|--print-type}}` |