Batch recursive permission change with find and chmod

Batch recursive permission change with find and chmod

#change directories permissions
find / -type d -exec chmod 755 {} \;

#change files permission
find / -type f -exec chmod 644 {} \;


Posted

in

by

Tags: