Closed orbea closed 7 years ago
Some files have unneeded executable permissions (755), this changes them to 644 with the following command.
755
644
find . -not -path '*/\.*' -type f -perm 755 -exec chmod 0644 {} \;
Some files have unneeded executable permissions (
755
), this changes them to644
with the following command.find . -not -path '*/\.*' -type f -perm 755 -exec chmod 0644 {} \;