Hello all!
I've got a bit of a problem here. I'm making an rsync script for my offsite storage hdd (encrypted with TrueCrypt).
So far, it works like a charm. But when I try to back up a folder with a whitespace in it's name, for example "Application Support" it's starting to freak out.
This is my rsync command:
And I'm getting this error:
Anyone knows why this doesn't work?
The TrueCrypt volume is formatted as FAT32, but I don't think that would cause problems...
I've got a bit of a problem here. I'm making an rsync script for my offsite storage hdd (encrypted with TrueCrypt).
So far, it works like a charm. But when I try to back up a folder with a whitespace in it's name, for example "Application Support" it's starting to freak out.
This is my rsync command:
Code:
rsync -a --progress --modify-window=1 ~/Library/Application\ Support/Little\ Snitch/ /Volumes/BACKUP/Library/Application\ Support/Little\ Snitch
And I'm getting this error:
Code:
mkdir: /Volumes/BACKUP/Library/Application Support: No such file or directory
Anyone knows why this doesn't work?
The TrueCrypt volume is formatted as FAT32, but I don't think that would cause problems...