Created
October 30, 2015 08:45
-
-
Save jvanja/826a55fa27bae0aa30d1 to your computer and use it in GitHub Desktop.
Unix FIND all files that do not have 755 permision and CHMOD 755 on them
This file contains 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
find . -not -perm 755 -type f -exec chmod 755 {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment