只要路径中没有空格,我就能通过SSH成功地进行RSYNC。
当路径中有空格时,它将不起作用。我已经尝试了斜杠,双引号和双引号。
当我使用斜杠时,输出表明这是成功的,但是我看不到任何传输的文件。
rsync -avz /path\ with\ spaces/ user@remotelocation:/media/another\ path\ with/spaces/
当我使用单引号或双引号时,它告诉我输入密码后权限被拒绝
rsync -avz '/path with spaces/' 'user@remotelocation:/media/another path with/spaces/'
我能做什么?
谢谢。