Displaying 1 result from an estimated 1 matches for "backup1_todaysd".
2009 Jul 14
3
--delete-before doesn't seem to actually be deleting before transfer
I have a script transferring some backup files onto a USB stick, which
has limited space. I use rsync 3.0.5 with the following command:
rsync -av --delete-before /local/backups/dir/backup1_todaysdate
/local/backups/dir/backup2_todaysdate
/local/backups/dir/backup3_todaysdate /USBstick/backups/dir
The USB stick runs out of space if more than 1 backup set is put on it,
so I'd assumed that by using the --delete-before option would first
scrub /USBstick/backups/dir of any files that I hadn&...