1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 08:22:09 +02:00
tldr/pages/osx/stat.md
2022-12-04 19:12:49 +10:00

514 B

stat

Display file status. More information: https://ss64.com/osx/stat.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}}