I am trying to use scp to transfer files between two Macs (OS 10.6.8). But it fails because there are spaces in my directory / file names. I cannot change directory / file names.
I often used the \ character when working in a terminal with my Mac to represent spaces. In this case, however, it does not work. I would really appreciate any advice on how to deal with this. Thank you
Here is an example of what I'm doing, in case I make a stupid mistake:
scp -r me@myWork :../../My\ documents/Projects/Project\ 1/* ./Desktop Error: scp: ../../My: No such file or directory
I tried rsync too, and this doesn't work either:
rsync -avub -e ssh me@myWork ::../../My\ documents/Projects/Project\ 1/* ./Desktop rsync: connection unexpectedly closed (0 bytes received so far) [receiver] rsync error: error in rsync protocol data stream (code 12) at /SourceCache/rsync/rsync-40/rsync/io.c(452)
source share