chmod: add a+rX example (#6457)

beep
Brian Blaylock 2021-09-03 14:43:28 -06:00 committed by GitHub
parent b7337112d0
commit 96306c0c94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -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}}`