mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 16:53:10 +02:00
stat: add osx page
This commit is contained in:
parent
095a89cc72
commit
3490cc61a8
1 changed files with 23 additions and 0 deletions
23
pages/osx/stat.md
Normal file
23
pages/osx/stat.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# stat
|
||||
|
||||
> Display file status.
|
||||
|
||||
- Show file properties such as size, permissions, creation and access dates among others:
|
||||
|
||||
`stat {{file}}`
|
||||
|
||||
- Same as a but verbose (more similar to linux's `stat`:
|
||||
|
||||
`stat -x {{file}}`
|
||||
|
||||
- Use stat to show only octal file permissions:
|
||||
|
||||
`stat -f %Mp%Lp {{file}}`
|
||||
|
||||
- Show octal file permissions, name and group of the file owner:
|
||||
|
||||
`stat -f "%Mp%Lp %N %Su %Sg" {{file}}`
|
||||
|
||||
- Show the size in bytes of the file:
|
||||
|
||||
`stat -f "%z %N" {{file}}`
|
Loading…
Add table
Reference in a new issue