Rsync problem...filenames
Posted
by
Jay White
on Server Fault
See other posts from Server Fault
or by Jay White
Published on 2011-03-16T01:50:40Z
Indexed on
2011/03/16
8:11 UTC
Read the original article
Hit count: 428
I'm trying to back up users Chrome Sessions with Rsync with the following command:
rsync -e "ssh -i new.key" -r --verbose -tz --stats --progress --delete \
'/cygdrive/c/Users/jay/AppData/Local/Google/Chrome/User Data/Default/Current Session' \
user@host:"/chrome sessions/"
Except this doesn't work exactly, as I get a file called chrome in a sessions directory that is already present on the server.
Why is this?
© Server Fault or respective owner