From 6d74fcce0bcb6f9df7c9439d5b7c40a24a66ceeb Mon Sep 17 00:00:00 2001 From: RealStickman Date: Tue, 28 Jun 2022 13:46:05 +0200 Subject: [PATCH] (Grav GitSync) Automatic Commit from RealStickman --- pages/02.linux/01.file-operations/default.en.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pages/02.linux/01.file-operations/default.en.md b/pages/02.linux/01.file-operations/default.en.md index da22a12..4eb65dc 100644 --- a/pages/02.linux/01.file-operations/default.en.md +++ b/pages/02.linux/01.file-operations/default.en.md @@ -12,15 +12,10 @@ XXX signify the permissions for the file's owner/group/others respectively Each X goes from 0 to 7. What each number means can be easily calculated by looking at what the individual bit values mean. -``` -0 -> No Permission - +```0 -> No Permission 4 -> Read Permission - 2 -> Write Permission - -1 -> Execute Permission -``` +1 -> Execute Permission``` A value of 5 therefor gives the permissions "Read" and "Execute".