mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-14 07:15:26 +02:00
stat: add page
This commit is contained in:
parent
c5d9f0ad23
commit
ab8b7e3460
1 changed files with 27 additions and 0 deletions
27
pages/common/stat.md
Normal file
27
pages/common/stat.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
# stat
|
||||
|
||||
> Display file and filesystem information.
|
||||
|
||||
- Show file properties such as size, permissions, creation and access dates among others:
|
||||
|
||||
`stat {{file}}`
|
||||
|
||||
- Same as a above but in a more concise way:
|
||||
|
||||
`stat -t {{file}}`
|
||||
|
||||
- Display filesystem information:
|
||||
|
||||
`stat -f {{file}}`
|
||||
|
||||
- Use stat to show only octal file permissions:
|
||||
|
||||
`stat -c "%a %n" {{file}}`
|
||||
|
||||
- Show octal file permissions, name and group of the file owner:
|
||||
|
||||
`stat -c "%a %n %U %G" {{file}}`
|
||||
|
||||
- Show the size in bytes of the file:
|
||||
|
||||
`stat -c "%s %n" {{file}}`
|
Loading…
Add table
Reference in a new issue