Adds script to fix perms on user and group
This commit is contained in:
parent
d464dc87da
commit
ffa64c2791
1 changed files with 7 additions and 0 deletions
7
fixperms.sh
Normal file
7
fixperms.sh
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
sudo find . -type d -exec chmod 775 {} \;
|
||||||
|
|
||||||
|
sudo find . -type f -exec chmod 664 {} \;
|
||||||
|
|
||||||
|
echo "use sudo and distro finds you"
|
Loading…
Reference in a new issue