How to diff directories over ssh
I am trying to recursively compare a directory in the local host to a directory in a remote linux machine. However, when i execute the next command: diff -r ‘ssh admin@10.0.0.10:/home/admin’ /home/admin it doesn’t work saying: diff: ssh admin@10.0.0.10:/home/admin: No such file or directory what is the right way to compare recursively the directories contents? … Read more