From 3490cc61a840ac7a2eb3140690a040dd03b2ab11 Mon Sep 17 00:00:00 2001 From: Juan Martin Enriquez Date: Sun, 15 Oct 2017 22:02:25 -0300 Subject: [PATCH] stat: add osx page --- pages/osx/stat.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages/osx/stat.md diff --git a/pages/osx/stat.md b/pages/osx/stat.md new file mode 100644 index 000000000..81407a38a --- /dev/null +++ b/pages/osx/stat.md @@ -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 a but verbose (more similar to linux's `stat`: + +`stat -x {{file}}` + +- Use stat to show only octal file permissions: + +`stat -f %Mp%Lp {{file}}` + +- Show octal file permissions, name and group of the file owner: + +`stat -f "%Mp%Lp %N %Su %Sg" {{file}}` + +- Show the size in bytes of the file: + +`stat -f "%z %N" {{file}}`