Files
figureslibres.cc/fixperms.sh
T
2021-05-12 09:16:16 +02:00

7 lines
182 B
Bash
Executable File

#!/bin/sh
chown -R 1000:http .
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 {} \;