From 9d11a1a38ef74334293613fe658ebbbd4076cafd Mon Sep 17 00:00:00 2001 From: Matthew Thompson Date: Wed, 29 Nov 2017 19:05:58 -0500 Subject: [PATCH] Update chmod.md Add example avoiding `X` --- pages/common/chmod.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/chmod.md b/pages/common/chmod.md index 00548adc8..df9dd9617 100644 --- a/pages/common/chmod.md +++ b/pages/common/chmod.md @@ -22,6 +22,6 @@ `chmod o=g {{file}}` -- Change permissions [-R]ecursively giving the [u]ser [r]ead, [w]rite, and e[X]ecute rights, and give [g]roup and [o]thers [r]ead and e[X]ecute rights but not [-w]rite rights: +- Change permissions [-R]ecursively giving [g]roup and [o]thers the abililty to [w]rite: -`chmod -R u+rwX,go+rX,go-w {{directory}}` +`chmod -R g+w,o+w {{directory}}`