3 lines
87 B
Bash
Executable File
3 lines
87 B
Bash
Executable File
#!/bin/bash
|
|
find ./ -type d -exec chmod 775 {} \;
|
|
find ./ -type f -exec chmod 664 {} \; |