Skip to content

Instantly share code, notes, and snippets.

@tavy315
Created October 4, 2016 20:05
Show Gist options
  • Save tavy315/3b6ed08d5dcb7a0656057838621a097b to your computer and use it in GitHub Desktop.
Save tavy315/3b6ed08d5dcb7a0656057838621a097b to your computer and use it in GitHub Desktop.
Chmod files and directories
find /home/svn -type d -exec chmod 770 {} \;
find /home/svn -type f -exec chmod 660 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment