Skip to content

Instantly share code, notes, and snippets.

@christianrojas
Created March 3, 2014 19:12
Show Gist options
  • Save christianrojas/9332411 to your computer and use it in GitHub Desktop.
Save christianrojas/9332411 to your computer and use it in GitHub Desktop.
Terminal commands for chmod on folders and files
# 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