Created
March 3, 2014 19:12
-
-
Save christianrojas/9332411 to your computer and use it in GitHub Desktop.
Terminal commands for chmod on folders and files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set agatha to user and admin to group recursively | |
chown -R agatha:admin [Folder]/ | |
# Set to user and group the read and write permissions recursively | |
chmod -R ug=rw [Folder]/ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment