Re: question on switches and their order

2001-06-26 Thread Dave Dykstra
List (E-mail) Subject: Re: question on switches and their order So, if I understand you correctly, it should work fine (with improvements) like this: rsync --exclude=.snapshot --delete -avW /mail-data/ /mnt Is this correct? Thanks

question on switches and their order

2001-06-25 Thread Jeff Kennedy
Does it matter what order the options/switches are placed? I ask because I did an initial rsync of data from a NetApp to a SAN box using the following: rsync -avz --exclude=.snapshot /mail-data/ /mnt The .snapshot directory is only useful to Ontap in this instance so I did not want it

RE: question on switches and their order

2001-06-25 Thread Wilson, Mark - MST
on switches and their order Does it matter what order the options/switches are placed? I ask because I did an initial rsync of data from a NetApp to a SAN box using the following: rsync -avz --exclude=.snapshot /mail-data/ /mnt The .snapshot directory is only useful to Ontap in this instance so I did

Re: question on switches and their order

2001-06-25 Thread Jeff Kennedy
is -W. It deals with whole files and is significantly quicker. Cheers Mark -Original Message- From: Jeff Kennedy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 26 June 2001 08:15 To: Rsync List Subject: question on switches and their order Does it matter what order the options

RE: question on switches and their order

2001-06-25 Thread Wilson, Mark - MST
rsync -avW --exclude=.snapshot /mail-data/ /mnt Cheers Mark -Original Message- From: Jeff Kennedy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 26 June 2001 09:19 To: RSync List (E-mail) Subject: Re: question on switches and their order So, if I understand you correctly, it should work fine