*: path/to/everything (#9589)

This commit is contained in:
pixel
2022-12-04 10:12:49 +01:00
committed by GitHub
parent ab7a36fbe6
commit 0d99563193
61 changed files with 147 additions and 147 deletions

View File

@@ -5,20 +5,20 @@
- Show file properties such as size, permissions, creation and access dates among others:
`stat {{file}}`
`stat {{path/to/file}}`
- Same as above but verbose (more similar to Linux's `stat`):
`stat -x {{file}}`
`stat -x {{path/to/file}}`
- Show only octal file permissions:
`stat -f %Mp%Lp {{file}}`
`stat -f %Mp%Lp {{path/to/file}}`
- Show owner and group of the file:
`stat -f "%Su %Sg" {{file}}`
`stat -f "%Su %Sg" {{path/to/file}}`
- Show the size of the file in bytes:
`stat -f "%z %N" {{file}}`
`stat -f "%z %N" {{path/to/file}}`