Skip to content

Instantly share code, notes, and snippets.

@farindra
Created July 25, 2019 00:33
Show Gist options
  • Save farindra/3c44c3ad536cc4d4a8da3a116c93d7cd to your computer and use it in GitHub Desktop.
Save farindra/3c44c3ad536cc4d4a8da3a116c93d7cd to your computer and use it in GitHub Desktop.
chmod file and folder recrusive
find /yourfolder -type d -exec chmod 755 {} \;
find /yourfolder -type f -exec chmod 644 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment