From 7046b47f047d197ed09c82aec83f46c0eaa78e73 Mon Sep 17 00:00:00 2001 From: Peter Date: Sun, 12 Feb 2023 22:22:28 +0000 Subject: [PATCH] Update 05-permissions.md typo on line 185: the permisison group to specify is 'o', rather than 'a'. --- _episodes/05-permissions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_episodes/05-permissions.md b/_episodes/05-permissions.md index 98caba5..c933fc9 100644 --- a/_episodes/05-permissions.md +++ b/_episodes/05-permissions.md @@ -182,7 +182,7 @@ The Permission Types that are used are: The potential Assignment Operators are **+** (plus) and **-** (minus); these are used to tell the system whether to add or remove the specific permissions. -First, let's remove the ability for other users to read the `methane.pdb` file. We can do this by specifying the **a** permission group, the **r** permission type and the **-** (minus) operator. The command that we use to modify permissions is `chmod`. +First, let's remove the ability for other users to read the `methane.pdb` file. We can do this by specifying the **o** permission group, the **r** permission type and the **-** (minus) operator. The command that we use to modify permissions is `chmod`. ~~~ $ chmod o-r methane.pdb