Files
dev-epau.archi.fr/fixperms.sh
T
2021-10-01 15:05:41 +02:00

8 lines
209 B
Bash
Executable File

#!/bin/sh
chown -R 1000:www-data .
find . -type f -exec chmod 664 {} \;
find ./bin -type f -exec chmod 775 {} \;
find . -type d -exec chmod 775 {} \;
find . -type d -exec chmod +s {} \;
chmod +x ./fixperms.sh