mirror of https://github.com/CrimsonTome/tldr.git
29 lines
620 B
Markdown
29 lines
620 B
Markdown
# stat
|
|
|
|
> Display file and filesystem information.
|
|
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/stat-invocation.html>.
|
|
|
|
- Show file properties such as size, permissions, creation and access dates among others:
|
|
|
|
`stat {{path/to/file}}`
|
|
|
|
- Same as above but in a more concise way:
|
|
|
|
`stat -t {{path/to/file}}`
|
|
|
|
- Show filesystem information:
|
|
|
|
`stat -f {{path/to/file}}`
|
|
|
|
- Show only octal file permissions:
|
|
|
|
`stat -c "%a %n" {{path/to/file}}`
|
|
|
|
- Show owner and group of the file:
|
|
|
|
`stat -c "%U %G" {{path/to/file}}`
|
|
|
|
- Show the size of the file in bytes:
|
|
|
|
`stat -c "%s %n" {{path/to/file}}`
|