7 lines
136 B
Bash
7 lines
136 B
Bash
#!/bin/bash
|
|
|
|
sudo find . -type d -exec chmod 775 {} \;
|
|
|
|
sudo find . -type f -exec chmod 664 {} \;
|
|
|
|
echo "use sudo and distro finds you"
|