Answers for "linux change all folders to 755 and files to 644"

0

linux change all folders to 755 and files to 644

find . -type d -print0 | xargs -0 chmod 755  
find . -type f -print0 | xargs -0 chmod 644
Posted by: Guest on June-10-2021

Code answers related to "linux change all folders to 755 and files to 644"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language