Displaying 1 result from an estimated 1 matches for "avvvvvvvv".
Did you mean:
vvvvvvvv
2019 Oct 31
0
rsync CLI protocol documentation
Hi all,
I would like to implement rsync compatibility in my app. I'm building an
ssh server and I want to support rsync.
For example I execute this command:
1) rsync -avvvvvvvv -e "ssh -p 2022" /home/nicola/test.sh nicola at 127.0.0.1:/
and I get this exec command over ssh:
2) rsync --server -vvvvvvvvlogDtpre.iLsfxC . /
I could simply execute the requested command and let it communicate with
the remote rsync command at point 1.
This should work but I need m...