Skip to main content

OnlineSupport4u

Change permissions recursively

By PrasadNaik
January 6, 2023

Use the below command to set 755 to folder and 644 to file recirsively

find . -type d -exec chmod 0755 {} \;

find . -type f -exec chmod 0644 {} \;