Files
figureslibres.cc/fixperms.sh
T
2019-10-13 17:14:29 +02:00

9 lines
226 B
Bash
Executable File

#!/bin/sh
chgrp nginx .
chgrp -R nginx *
sh -c "find . -type f | xargs chmod 664"
sh -c "find ./bin -type f | xargs chmod 775"
sh -c "find . -type d | xargs chmod 775"
sh -c "find . -type d | xargs chmod +s"
sh -c"umask 0002"