From ab8b7e3460bd506bd1b6e74fd1f065f153bc680a Mon Sep 17 00:00:00 2001 From: Juan Martin Enriquez Date: Thu, 5 Oct 2017 00:21:26 -0300 Subject: [PATCH] stat: add page --- pages/common/stat.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pages/common/stat.md diff --git a/pages/common/stat.md b/pages/common/stat.md new file mode 100644 index 000000000..0826c3bf6 --- /dev/null +++ b/pages/common/stat.md @@ -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 a above but in a more concise way: + +`stat -t {{file}}` + +- Display filesystem information: + +`stat -f {{file}}` + +- Use stat to show only octal file permissions: + +`stat -c "%a %n" {{file}}` + +- Show octal file permissions, name and group of the file owner: + +`stat -c "%a %n %U %G" {{file}}` + +- Show the size in bytes of the file: + +`stat -c "%s %n" {{file}}`