forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 above but in a more concise way: | ||
|
||
`stat -t {{file}}` | ||
|
||
- Show filesystem information: | ||
|
||
`stat -f {{file}}` | ||
|
||
- Show only octal file permissions: | ||
|
||
`stat -c "%a %n" {{file}}` | ||
|
||
- Show owner and group of the file: | ||
|
||
`stat -c "%U %G" {{file}}` | ||
|
||
- Show the size of the file in bytes: | ||
|
||
`stat -c "%s %n" {{file}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 above but verbose (more similar to linux's `stat`): | ||
|
||
`stat -x {{file}}` | ||
|
||
- Show only octal file permissions: | ||
|
||
`stat -f %Mp%Lp {{file}}` | ||
|
||
- Show owner and group of the file: | ||
|
||
`stat -f "%Su %Sg" {{file}}` | ||
|
||
- Show the size of the file in bytes: | ||
|
||
`stat -f "%z %N" {{file}}` |