arrow_back
Back

Linux file permissions: chmod, chown, numeric modes, and bulk fixes

Andrew Dorokhov Andrew Dorokhov schedule 1 min read

Reset permissions to 755 for directories and 644 for files:

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

Need Help with Development?

Happy to help — reach out via the contacts or go straight to my Upwork profile.

work View Upwork Profile arrow_forward
Next Article

Linux default apps: URI handlers, xdg-mime, and MIME types

arrow_forward