add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -1,24 +1,24 @@
# stat
> 显示文件状态。
> 更多信息:<https://keith.github.io/xcode-man-pages/stat.1.html>.
> 更多信息:<https://keith.github.io/xcode-man-pages/stat.1.html>
- 显示文件属性,如大小、权限、创建和访问日期等:
- 显示文件属性,如大小、权限、创建和访问日期等:
`stat {{文件}}`
`stat {{path/to/file}}`
- 与上相同,但更详细(更类似于 Linux`stat`
- 与上相同但更详细更类似于Linux`stat`
`stat -x {{文件}}`
`stat -x {{path/to/file}}`
- 显示文件权限:
- 显示八进制文件权限:
`stat -f %Mp%Lp {{文件}}`
`stat -f %Mp%Lp {{path/to/file}}`
- 显示文件的所有者和所属组:
- 显示文件的所有者和组:
`stat -f "%Su %Sg" {{文件}}`
`stat -f "%Su %Sg" {{path/to/file}}`
- 以字节为单位显示文件的大小:
- 显示文件的大小(以字节为单位)
`stat -f "%z %N" {{文件}}`
`stat -f "%z %N" {{path/to/file}}`