Hi Tim, > I have a directory tree that is several layers deep, with multiple files in > each. I need to change the permissions on all the files/ directories in > one go. how do i provide the arguments to chmod to do this? The -R option .. chmod -R o-x dir/ 'man chmod' is your friend. HTH Brian.