discourse-legacysite-perl/site/slowtwitch.com/cgi-bin/articles/admin/mysqlman/.perms
2024-06-17 21:49:12 +10:00

12 lines
309 B
Bash
Executable File

#!/bin/sh
# Remove compiled files
rm -f templates/compiled/*.*
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
find . \( -name '*.pl' -or -name '*.cgi' -or -name '.perms' -or -name '*.sh' \) -exec chmod a+x {} \;
find templates -maxdepth 1 -exec chmod a+wX {} \;
chmod a+x .perms