Adds script to fix perms on user and group

This commit is contained in:
James Hackett 2023-10-08 02:28:03 +01:00
vanhempi d464dc87da
commit ffa64c2791

7
fixperms.sh Normal file
Näytä tiedosto

@ -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"