Re: problem with --delete if I sync part of a dir

2002-01-18 Thread Palmans Pepijn
thanks, this was exactly what I needed ! greets, pepijn www.kangaroot.net !! On Tue, 15 Jan 2002, Dave Dykstra wrote: On Tue, Jan 15, 2002 at 10:01:59AM +0100, Palmans Pepijn wrote: Hi, I'm using rsync for a couple of things but I am at a point where I could not find a solution for

problem with --delete if I sync part of a dir

2002-01-15 Thread Palmans Pepijn
Hi, I'm using rsync for a couple of things but I am at a point where I could not find a solution for my problem. this is what I want to do: rsync only the files i_* from a directory from machine A to machine Bi and delete them from machine B if they on longer exist on machine A. so I use

Re: problem with --delete if I sync part of a dir

2002-01-15 Thread Dave Dykstra
On Tue, Jan 15, 2002 at 10:01:59AM +0100, Palmans Pepijn wrote: Hi, I'm using rsync for a couple of things but I am at a point where I could not find a solution for my problem. this is what I want to do: rsync only the files i_* from a directory from machine A to machine Bi and delete

Re: problem with --delete if I sync part of a dir

2002-01-15 Thread tim . conway
check this out: echo rsync -azv --stats -e ssh --delete i_* user@host:/dir/. it expands to sync -azv --stats -e ssh --delete all existing i_* files user@host:/dir/ It won't mention the ones that are gone. rsync the directory/. including i_* and excluding * (the order matters). rsync -azv