10 lines
243 B
Bash
Executable File
10 lines
243 B
Bash
Executable File
#!/bin/sh
|
|
chgrp www .
|
|
chgrp -R www *
|
|
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"
|
|
chmod +x fixperms.sh
|