Change Permissions For Directories Only

by Kyle on

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

Change Permissions For Files Only

by Kyle on

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

Hide Sidebar