7 lines
108 B
Bash
7 lines
108 B
Bash
#!/bin/bash
|
|
|
|
chown -R 999:999 *
|
|
find . -type d -exec chmod 2770 {} \;
|
|
find . -type f -exec chmod 660 {} \;
|
|
|