UNIX tip - Use 'find' for recursive directory permissions Mar 21, 2011 When you want to make all directories executable, but not all files. find ./ -type d -exec chmod a+x {} \; find