Files
vocurations/fixperms.sh
T
2020-10-30 17:09:07 +01:00

7 lines
183 B
Bash

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