Displaying 2 results from an estimated 2 matches for "vrtul".
2016 Jun 05
4
Deletion of destination files
Hi to all rsync users.
rsync's `--delete' option works fine in the following example: I'm sending all
the content of /home/rodolfo from machine1 to /home/rodolfo in machine2:
$ rsync --dry-run -vrtul --delete --exclude='/.*' . 192.168.0.2:/home/rodolfo
, and --delete works perfectly. Instead, in this other example:
$ rsync --dry-run -vrt --delete --modify-window=1 file1 file2 file3
... /mnt/pendrive/rodolfo
I'm copying various files and directories from different places of my h...
2016 Jun 05
0
Deletion of destination files
...new feature)
On 06/05/2016 06:40 AM, Rodolfo Medina wrote:
> Hi to all rsync users.
>
> rsync's `--delete' option works fine in the following example: I'm sending all
> the content of /home/rodolfo from machine1 to /home/rodolfo in machine2:
>
> $ rsync --dry-run -vrtul --delete --exclude='/.*' . 192.168.0.2:/home/rodolfo
>
> , and --delete works perfectly. Instead, in this other example:
>
> $ rsync --dry-run -vrt --delete --modify-window=1 file1 file2 file3
> ... /mnt/pendrive/rodolfo
>
> I'm copying various files and direct...