Answers for "chmod 777 all files and folders linux"

2

how to make all directory 775

find /opt/lampp/htdocs -type d -exec chmod 755 {} \;
find /opt/lampp/htdocs -type f -exec chmod 644 {} \;
Posted by: Guest on October-04-2020
1

find all files with 777 permissions

find / -type f -perm 0777
Posted by: Guest on March-17-2021

Code answers related to "chmod 777 all files and folders linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language