chmod: add a+rX example (#6457)

This commit is contained in:
Brian Blaylock
2021-09-03 14:43:28 -06:00
committed by GitHub
parent b7337112d0
commit 96306c0c94

View File

@@ -30,3 +30,7 @@
- Change permissions recursively giving [g]roup and [o]thers the ability to [w]rite: - Change permissions recursively giving [g]roup and [o]thers the ability to [w]rite:
`chmod -R g+w,o+w {{directory}}` `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}}`