martin Re: recursive chmod in command-line? 2011-08-26 chmod is recursive. It has some limitations with SCP. Though I'm not sure if this should be your case. Anyway, it is worth trying SFTP instead.
jedduff recursive chmod in command-line? 2011-08-26 01:23 After a couple hours of searching and testing, I didn't found how to do recursive chmod with the command-line. this is my script : open scp://USERNAME:[email protected] cd /mnt/FILESERVER/ chmod 777 * <<--- not recursive :( How can I set all files and all sub directories with 777? I can use ftp, sftp or scp thanks :)