From 96306c0c946e8d4c3e8e05acc47797f2f70a8dc2 Mon Sep 17 00:00:00 2001 From: Brian Blaylock Date: Fri, 3 Sep 2021 14:43:28 -0600 Subject: [PATCH] chmod: add a+rX example (#6457) --- pages/common/chmod.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/chmod.md b/pages/common/chmod.md index f14e2b72f3..b1a70f4dcd 100644 --- a/pages/common/chmod.md +++ b/pages/common/chmod.md @@ -30,3 +30,7 @@ - Change permissions recursively giving [g]roup and [o]thers the ability to [w]rite: `chmod -R g+w,o+w {{directory}}` + +- Recursively give [a]ll users [r]ead permissions to files and e[X]ecute permissions to sub-directories within a directory: + +`chmod -R a+rX {{directory}}`