> often times I have to set permission of files and leave the > directories untouched recursively. Is there any option to in chmod to > do this ?. You can try the following command to change the permission of all the files alone recursively: $ find . -type f | xargs chmod MODE -- Regards, Bhuvaneswaran A