mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-21 08:02:13 +00:00
Update cheatsheets
This commit is contained in:
29
osx/stat
Normal file
29
osx/stat
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, osx]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# stat
|
||||
|
||||
> Display file status.
|
||||
> More information: <https://keith.github.io/xcode-man-pages/stat.1.html>.
|
||||
|
||||
- Show file properties such as size, permissions, creation and access dates among others:
|
||||
|
||||
`stat {{path/to/file}}`
|
||||
|
||||
- Same as above but verbose (more similar to Linux's `stat`):
|
||||
|
||||
`stat -x {{path/to/file}}`
|
||||
|
||||
- Show only octal file permissions:
|
||||
|
||||
`stat -f %Mp%Lp {{path/to/file}}`
|
||||
|
||||
- Show owner and group of the file:
|
||||
|
||||
`stat -f "%Su %Sg" {{path/to/file}}`
|
||||
|
||||
- Show the size of the file in bytes:
|
||||
|
||||
`stat -f "%z %N" {{path/to/file}}`
|
||||
Reference in New Issue
Block a user