Files
tldr/pages.zh/osx/stat.md

24 lines
538 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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