Last Updated: September 09, 2019
·
1.993K
· laupifrpar

Change all files and folders permissions to 644/755

For directories

find * -type d -print0 | xargs -0 chmod 0755

For files

find . -type f -print0 | xargs -0 chmod 0644

source: stackoverflow

1 Response
Add your response

Good one.

over 1 year ago ·