Find and chmod directories / files

Sunday, June 14th, 2009

root@host [~]# find . -type f -print0 | xargs -0i chmod 644 {}

root@host [~]# find . -type d -print0 | xargs -0i chmod 755 {}