Files
hehe.org/fixprems.sh
T
2020-06-11 16:42:43 +02:00

7 lines
186 B
Bash

#!/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 {} \;