tldr/pages/osx/stat.md
Agniva De Sarker 0833e8e8d9 stat: update osx variant
- Fix a minor grammar error
- Removed the file permissions example and only kept the file owner and group.
2017-10-16 11:37:39 +05:30

24 lines
420 B
Markdown

# stat
> Display file status.
- Show file properties such as size, permissions, creation and access dates among others:
`stat {{file}}`
- Same as above but verbose (more similar to linux's `stat`):
`stat -x {{file}}`
- Show only octal file permissions:
`stat -f %Mp%Lp {{file}}`
- Show owner and group of the file:
`stat -f "%Su %Sg" {{file}}`
- Show the size of the file in bytes:
`stat -f "%z %N" {{file}}`