Created
December 5, 2020 16:16
-
-
Save repodevs/6a2494bb51ccb7126dda5474fb53e648 to your computer and use it in GitHub Desktop.
Linux command to find and fix permission file
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
#!/bin/bash | |
find -type f -not -perm 644 -exec chmod 644 {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment