Skip to content

Instantly share code, notes, and snippets.

@alexrinass
Created September 23, 2009 07:28
Show Gist options
  • Save alexrinass/191808 to your computer and use it in GitHub Desktop.
Save alexrinass/191808 to your computer and use it in GitHub Desktop.
# Chmod files with certain extension only
find . -type f -name "*\.pl" | xargs chmod 755
# Chmod only directories
find . -type d | xargs chmod 755
# Chmod directories which contain blanks
find . -type d -exec chmod 2775 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment