From 6dd84e41fe901322d781d69d2ceb894a7a57ab41 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Mon, 16 Oct 2017 11:33:38 +0530 Subject: [PATCH] stat: simplify page - Fix minor grammar mistake - Removed the octal file permissions as they have been already mentioned above. --- pages/linux/stat.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/linux/stat.md b/pages/linux/stat.md index 0826c3bf6..9104024ab 100644 --- a/pages/linux/stat.md +++ b/pages/linux/stat.md @@ -6,11 +6,11 @@ `stat {{file}}` -- Same as a above but in a more concise way: +- Same as above but in a more concise way: `stat -t {{file}}` -- Display filesystem information: +- Show filesystem information: `stat -f {{file}}` @@ -18,10 +18,10 @@ `stat -c "%a %n" {{file}}` -- Show octal file permissions, name and group of the file owner: +- Show owner and group of the file: -`stat -c "%a %n %U %G" {{file}}` +`stat -c "%U %G" {{file}}` -- Show the size in bytes of the file: +- Show the size of the file in bytes: `stat -c "%s %n" {{file}}`