Find and chmod directories / files
Sunday, June 14th, 2009root@host [~]# find . -type f -print0 | xargs -0i chmod 644 {}
root@host [~]# find . -type d -print0 | xargs -0i chmod 755 {}
root@host [~]# find . -type f -print0 | xargs -0i chmod 644 {}
root@host [~]# find . -type d -print0 | xargs -0i chmod 755 {}