Files
figureslibres.cc/fixperms.sh
T
2022-12-01 12:21:04 +01:00

9 lines
213 B
Bash

#!/bin/sh
chown -R webdev: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
#