Ik kan het volgende rsync scriptje niet runnen omdat ik problemen heb met spaties in de mappen.
rsync -vrtz --delete --stats --bwlimit=50 --progress /cygdrive/c/Users Shared Folders/Meuleveld/Foto's/Fotoalbum/ clooser@xxx.xxx.xxx.xxx::appd
De handleiding zegt hier het volgende over, maar dit heeft betrekking op files volgens mij en niet op mappen.
This would copy file1 and file2 into /dest using a remote shell. This word-splitting is done by the remote shell, so if it doesn't work it means that the remote shell isn't configured to split its args based on whitespace (a very rare setting, but not unknown). If you need to transfer a filename that contains whitespace, you'll need to either escape the whitespace in a way that the remote shell will understand, or use wildcards in place of the spaces. Two examples of this are:
rsync -av host:'file\ name\ with\ spaces' /dest
rsync -av host:file?name?with?spaces /dest
Ik heb ook al het volgende geprobeerd:
Userss~1/
rsync -vrtz --delete --stats --bwlimit=50 --progress /cygdrive/c/Users Shared Folders/Meuleveld/Foto's/Fotoalbum/ clooser@xxx.xxx.xxx.xxx::appd
De handleiding zegt hier het volgende over, maar dit heeft betrekking op files volgens mij en niet op mappen.
This would copy file1 and file2 into /dest using a remote shell. This word-splitting is done by the remote shell, so if it doesn't work it means that the remote shell isn't configured to split its args based on whitespace (a very rare setting, but not unknown). If you need to transfer a filename that contains whitespace, you'll need to either escape the whitespace in a way that the remote shell will understand, or use wildcards in place of the spaces. Two examples of this are:
rsync -av host:'file\ name\ with\ spaces' /dest
rsync -av host:file?name?with?spaces /dest
Ik heb ook al het volgende geprobeerd:
Userss~1/