rsync with --link-dest=DIR

2010-04-18 Thread Martin
Hi, i use rsync version 2.6.9 protocol version 29 on Mac OS X 10.6.3 and expierienced the following problem. When using --link-dest=DIR with DIR on the startup volume everything works fine. If DIR is a volume on an external drive many files are copied instead of creating hard links. hardlinks

Re: rsync with --link-dest=DIR

2010-04-18 Thread Martin
he problem. Thanks also for your other hints. Best regards Martin -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Is anybody else gettting these?

2001-11-19 Thread Martin Pool
gt; something like that, if it seems interesting enough.) Mutt actually handles this really well: Lotus sends a multipart/alternative, and mutt is smart enough to use the text/plain form and ignore the HTML. Regardless of HTML flamewars, auto-replying to list messages is silly. -- Martin

Re: Bandwidth Limits

2001-11-19 Thread Martin Pool
mote:/path/to/file/arch > > Any ideas? It's on an OpenBSD box going to a FreeBSD box. Both are > 2.4.6. --bwlimit only works if you use it... -- Martin

Re: Bandwidth Limits

2001-11-21 Thread Martin Pool
/s by ten often gives a reasonable estimate for bytes/s, since most transports have some framing or interpacket or redundancy overhead. -- Martin

solution: Re: rsync takes way too long to perform this....

2001-11-22 Thread Martin Pool
#x27;*' /tmp/remoteimages/ If you just want a list of them: rsync -avp remote::gif/ --include '*.jpg' --include '*.gif' \ --include '*/' --exclude '*' -- Martin

Re: patch to enable faster mirroring of large filesystems

2001-11-24 Thread Martin Pool
nd then apply it later, possibly transferring it by some other mechanism. -- Martin

Re: rsync server over SSH [includes code patches]

2001-11-25 Thread Martin Pool
and trying to insert the corresponding changes at the right place. If you use emacs you might like to use emerge. See http://cvs.samba.org/ for instructions on getting an anonymous cvs checkout. -- Martin

Re: rsync server over SSH [includes code patches]

2001-11-25 Thread Martin Pool
ch contains the necessary information. We need to think carefully to make sure this is secure though. -- Martin

Re: patch to enable faster mirroring of large filesystems

2001-11-26 Thread Martin Pool
new model of operation then perhaps it would be better to use librsync and make it a completely separate program. At this stage I'm inclined to take the conservative answer to both questions, but having a discussion about them could be useful. -- Martin

Re: --no-detach option?

2001-11-26 Thread Martin Pool
d stick it in an options struct. People who work with Apache should try the mostly-undocumented -X option, which tells it to not detach and also not fork on incoming connections. For debugging that's even more useful. -- Martin

Re: rsync server over SSH [includes code patches]

2001-11-25 Thread Martin Pool
hem? You probably want something like patch -p0 < ~/rsync.diff -- Martin

Re: Not all files synched - hard link problems???

2001-11-27 Thread Martin Pool
On 27 Nov 2001, Dave Dykstra <[EMAIL PROTECTED]> wrote: > > Unfortunately there is no way to search the archive. That would be very > useful. Just use google and say site:lists.samba.org rsync mbp prototype or whatever. -- Martin

Re: rsync server over SSH [includes code patches]

2001-11-27 Thread Martin Pool
On 27 Nov 2001, Dave Dykstra <[EMAIL PROTECTED]> wrote: > 2.4.7 isn't released yet. Martin has put a lot of changes in the last week > into CVS, and when I tried it yesterday it didn't compile anywhere but > Linux. Today it looks a bit better but I still have probl

Re: More - cause - not all files synched - program hangs in select

2001-11-27 Thread Martin Pool
thing I see is the > "match_report" message, then the program hangs in select. Please try running the version in anoncvs. See cvs.samba.org. I will make a preview release shortly which might help if you can't get the anoncvs version to work. -- Martin

Re: rsync server over SSH [includes code patches]

2001-11-28 Thread Martin Pool
gt; 4. Unixware 1.1.2 and UTS 2.1.2 had missing S_ISLNK and S_ISSOCK > macros which are defined in rsync.h. Maybe all the lib files > should just include rsync.h. Yes, I did that in (I think) getnameinfo/getaddrinfo, but we should do it in the others as well. That's great, thankyou. -- Martin

Re: How to avoid copying empty directories?

2001-11-28 Thread Martin Pool
-exec rmdir {} \; I think the best fix is to add scripting support: rsync -avu --perl 'filter() { ( -d && -s ) || /\.c$/; }' here friendly:/tmp Anybody else like this idea? -- Martin

patch from faith@alephnull to add rate indicator to --progress

2001-11-28 Thread Martin Pool
mp; ofs > last_ofs + 1000 +&& msdiff(&print_time, &now) > 250) { + rprint_progress(ofs, size, &now); +last_ofs = ofs; +print_time.tv_sec = now.tv_sec; +print_time.tv_usec = now.tv_usec; } } - End forwarded message - -- Martin

Re: rsync server over SSH [includes code patches]

2001-11-28 Thread Martin Pool
> sun/amdahl/unixware patch All these are applied now. I changed the library routines to just include rsync.h -- Martin

rsync with hp-ux 10.20 stock compiler (was Re: CVS update: rsync)

2001-11-28 Thread Martin Pool
C/ANSI C product; ignored. (Bundled) cc: "configure", line 4987: error 1705: Function prototypes are an ANSI feature. configure:5005: $? = 1 We have access to the professional compiler kit, but I wanted to see if it would work with the stock compiler. -- Martin

Re: Widespread implementation of rsync

2001-11-28 Thread Martin Pool
http://sourceforge.net/projects/xdelta/ > and Martin Pool has turned it into a library in C (I don't see where the > home page is -- Martin?). It's part of http://rproxy.samba.org/ It works fine. I know the Intermezzo guys are using it inside their distributed filesystem, as a

Re: problem with 2.4.7pre4

2001-11-29 Thread Martin Pool
27;s possible that they will still fail. > > > > access_log > > > > write failed on access_log : Success > > > > unexpected EOF in read_timeout That error often means the ssh connection is failing. Can you please post the exact command you're running and the rsyncd configuration file? -- Martin

Re: problem with 2.4.7pre4

2001-11-29 Thread Martin Pool
nel, if possible. Failing that perhaps try attaching to it with # strace -p PIDOFSTUNNEL -o /tmp/stunnel.trace to see whether it exits or seems to get an error. The command and config file look OK. -- Martin

Re: problem with 2.4.7pre4

2001-11-29 Thread Martin Pool
On 29 Nov 2001, Jeremy Hansen <[EMAIL PROTECTED]> wrote: > rsync -avz --progress rsync://localhost/apache_logs/access_log . tridge just reminded me that -a does *not* detect hardlinks. You need -H too. A documentation bug implied that -a was enough. I've just fixed it. -- Martin

Re: problem with 2.4.7pre4

2001-11-29 Thread Martin Pool
erent directories). That's an interesting bug. Can you write a script to reproduce it? Was anything else happening on the disk at the same time? Is it possible you didn't give -a or -H? -- Martin

Re: new rsync feature

2001-10-08 Thread Martin Pool
anybody else want this or want it not to go in? -- Martin

Re: rsync binary for ncr mp ras svr4

2001-10-14 Thread Martin Pool
gt; http://rsync.samba.org/ftp/rsync/binaries/ > > > Uh oh, I haven't tried it since the machine samba.org was migrated to new > hardware, and I see the files have the wrong owner and group so I have no > permission to update them. Tridge or Martin, can you please fix those >

Re: linking rsync-2.5.0 to libz.so

2001-12-01 Thread Martin Pool
zlib/README.rsync -- Martin

Re: rsyncing devices

2001-12-01 Thread Martin Pool
der if there are other 64 bit stat values that are being misinterpreted. I agree, and added it to TODO. We will need this on Linux as well, though it's anybody's guess whether devfs and dynamic device numbers will make it mostly irrelevant there. -- Martin

Re: linking rsync-2.5.0 to libz.so

2001-12-01 Thread Martin Pool
y version that doesn't understand --daemon. -- Martin

bug in permissions on symlinks

2001-12-02 Thread Martin Pool
eating the link.) David, do you have a machine that behaves like this? -- Martin

Re: rsync 2.5.0 bit length overflow

2001-12-02 Thread Martin Pool
It seems like a harmless warning. Is it reproducible? Are the file trees transferred correctly? -- Martin

rsync internationalization?

2001-12-02 Thread Martin Pool
Does anybody care about supporting non-English message locales in rsync? (Do all sysadmins speak English? :-) Would anybody contribute translations if we had the framework? -- Martin

Re: Bug in rsyncd 2.5.0 while handling config file string values

2001-12-02 Thread Martin Pool
loc. Thankyou for the report. This should be fixed in 2.5.1pre1, which is available from the usual site. -- Martin

Re: rsync-2.5.0 patch for "make check" bug

2001-12-02 Thread Martin Pool
On 30 Nov 2001, Tom Schmidt <[EMAIL PROTECTED]> wrote: > Attached is a patch for rsync 2.5.0 to fix the "make check" option. Thankyou, commmitted. -- Martin

Re: Why does one of there work and the other doesn't

2001-12-02 Thread Martin Pool
a single directory in memory. -- Martin

Re: --no-detach option?

2001-12-02 Thread Martin Pool
one or two packages that do this, but I can't remember which ones right at the moment. -- Martin

Re: rsync ipv6 patch merge?

2001-12-03 Thread Martin Pool
m. > > Some systems may not have typedef u_int{8,32}_t. > I'm not sure whether we should use u_short/u_long instead of them. Yes, we do build on systems which do not have them built in. We normally use uchar and uint32, though note that on systems such as CRAY they may actually be larger. Thankyou, -- Martin

Re: Why does one of there work and the other doesn't

2001-11-29 Thread Martin Pool
tory xx" so it creates /backup/usr/xx /usr/xx/ means "the contents of xx" so it copies the contents directly into /backup/usr/ without creating an xx destination directory. Just use whichever one is appropriate. -- Martin

Re: --no-detach option?

2001-12-05 Thread Martin Pool
On 21 Nov 2001, Jos Backus <[EMAIL PROTECTED]> wrote: > On Wed, Nov 21, 2001 at 08:54:18AM -0600, Dave Dykstra wrote: > Here's a patch, based on Max Bowsher's patch. If deemed useful I will supply > the man patch as well. --no-detach patch committed. -- Martin

rsync2.5.1pre3 released

2001-12-05 Thread Martin Pool
nechika and Jun-ichiro "itojun" Hagino. * rsync.1 typo fix by Matt Kraai. * Fix for segfault in rsyncd.conf parser by Paul Mackerras. * Test suite typo fixes Tom Schmidt. -- Martin

Re: problem uploading to an rsync server

2001-12-05 Thread Martin Pool
for uploading > and downloading. Please try 2.5.1pre3 if have time. It should work properly in daemon mode and also fix some other bugs that may affect you later. -- Martin

move rsync development tree to BitKeeper?

2001-12-05 Thread Martin Pool
ge will be too disruptive, but of course I wanted to consult before moving. Please send any comments to me or to the list, whether they be "it's great, let's do it", or "I don't have time to switch." (If you need to flame about the licence then please send it direct to me rather than burning up the list.) -- Martin

Re: move rsync development tree to BitKeeper?

2001-12-07 Thread Martin Pool
Incidentally, here's an interesting BitKeeper demostration/tutorial: http://www.bitkeeper.com/demo/ -- Martin

Re: bug in permissions on symlinks

2001-12-07 Thread Martin Pool
ry to diff two directory listings! > Why _not_ take the conservation approach "unless somebody reports a > problem" [sic]? I'll speak to tridge, but I think we should pull this line out because of the scenario Cameron describes. -- Martin (Now on ZX12-R)

Re: Cosmetic code cleanup?

2001-12-07 Thread Martin Pool
;ll just run GNU indent over it and commit directly -- no need to send a big noisy patch unless you really want to. -- Martin

Re: protocol error?

2001-12-07 Thread Martin Pool
On 7 Dec 2001, Dave Dykstra <[EMAIL PROTECTED]> wrote: > Martin, I don't think --enable-debug should define #DEBUG, I think it should > only generate debugging symbols. I think you're probably right. -- Martin

Re: rsync ipv6 patch merge?

2001-12-03 Thread Martin Pool
hold all reasonable IPv6 encodings, and then cast it as appropriate? I have not had a chance to follow this idea through yet. Thankyou, -- Martin

Re: Netware modify bit changed

2001-12-04 Thread Martin Pool
bit, so it will get the default OS behaviour which is probably to set the bit on newly modified files. If anybody who cares about this writes a reasonably clean patch to implement it then I guess it would be considered. I think Samba can optionally map the A bit to the Unix x bit. Perhaps you could try that. -- Martin

Re: Files in use

2001-12-02 Thread Martin Pool
ile is only partially transferred. -- Martin

Re: Problems with rsync 2.5.1pre1 and hardlinks

2001-12-09 Thread Martin Pool
necessary. Perhaps we can improve it... -- Martin

Re: Problems with rsync 2.5.1pre1 and hardlinks

2001-12-09 Thread Martin Pool
ory is in fact the problem. -- Martin

Re: Rsync skipping certain lines in files

2001-12-11 Thread Martin Pool
m but the rest of the lines in the files need to > be mirrored. Thank You That would be pretty hard to implement and of limited use to most people. Perhaps you can ship the standard and varying parts of the file separately and combine them on the destination. -- Martin

Re: Problems with rsync 2.5.1pre1 and hardlinks

2001-12-12 Thread Martin Pool
(struct file_struct *)malloc(sizeof(hlink_list[0])*flist->count))) out_of_memory("init_hard_links"); There are certainly better ways to do this. To start with, hlink.c only needs to even *think* about non-directories which have nlinks>1. -- Martin

Re: efficient file appends

2001-12-12 Thread Martin Pool
technical report if you have not already. -- Martin

Re: efficient file appends

2001-12-12 Thread Martin Pool
at way before.) I just tested this, and it looks like it works. Of course the drawback is that any regions *have* been deleted or moved, rsync will retransmit the whole file. (You asked for it, you got it.) But for the common case of appended files or interrupted transfers it's pretty good. I might add --block-size=max or --block-size=1M. You should also check out --partial and -P. -- Martin

Re: definite data corruption in 2.5.0 with -z option

2001-12-12 Thread Martin Pool
5.0 at both ends? Are you using rsh or ssh? David: I suspect this might be because the "bit length overflow" message is being emitted by one end, getting into stderr, and therefore corrupting the stream. If this is true, you should be able to avoid it by upgrading to 2.5.1pre. Thnks, -- Martin

Re: definite data corruption in 2.5.0 with -z option

2001-12-12 Thread Martin Pool
using CVS HEAD, or ./configure --disable-debug in 2.5.0 or 2.5.1pre3. Thanks -- Martin

Re: ( ????)???????? ?? ???????? ?????? ??????????.

2001-12-16 Thread Martin Pool
n Polish? -- Martin

Re: CVS update: rsync

2001-12-16 Thread Martin Pool
col. I guess that wouldn't happen in socket(), but it's probably generally good. -- Martin

Re: CVS update: rsync

2001-12-16 Thread Martin Pool
#x27;s more inconvenient & error prone than keeping > global variables. I see your point... Should we get rid of it, or add an initialization function? -- Martin

Re: rsync server over SSH [includes code patches]

2001-12-17 Thread Martin Pool
Some of them might be obsolete now, but it doesn't seem worthwhile to take them out. -- Martin

Re: --size-only ?

2001-12-17 Thread Martin Pool
ow would it know which file is the relevant one? If the changes are systematic, you might be able to run a pre or post-processing script to move the files to the same name, then do the transfer. Alternatively, have your script run rsync only on the files that need to be transferred. -- Martin

Re: rsync things to do soon

2001-12-17 Thread Martin Pool
ments, or does this option not work in that case, or is the file named to be opened on the remote machine? -- Martin

Re: compile errors with rsync 2.5.0 for RedHat linux 7.1 alpha

2001-12-17 Thread Martin Pool
ETADDRINFO 1 #define HAVE_GETNAMEINFO 1 #define HAVE_INET_PTON 1 into config.h after running ./configure. Let us know. -- Martin

Re: rsync hang, more details [LONG]

2001-12-17 Thread Martin Pool
ng. If netstat on your platform supports other options to get more info like -p -o -e then you can specify them as well. Thanks. -- Martin

mailing list test

2001-12-17 Thread Martin Pool
Mailman has been upgraded; please ignore this message. -- Martin

Re: -v prints directories twice

2001-12-18 Thread Martin Pool
all noticing that rsync always> did that, but I don't think it's a very recent change. Yes, that looks like a good fix. -- Martin

Re: rsync doesn't accept commands

2001-12-18 Thread Martin Pool
re trying to do... If you want to start the server, you need to edit /etc/rsyncd.conf and then do # rsync --daemon If you want to access this rsync mymachine:: -- Martin > > > Tim ;) >

Re: .plan to avoid unhappy users

2002-01-02 Thread Martin Pool
ehaviour by using --dry-run first to see if the proposed modifications are reasonable. If you discover any bugs that cause --dry-run not to be accurate then please report them. -- Martin The daffodils are coming. Are you? linux.conf.au, February 2002, Brisbane, Australia

Re: rsync *Still* Copying All Files?

2002-01-02 Thread Martin Pool
gt; > My hunch is that this is happening because I'm dealing with NTFS5 on Win2K > and NTFS4 on NT4. I think there are some NT APIs that only return time in 2sec resolution. Possibly Cygwin is using them? (Why would it, though?) -- Martin The daffodils are coming. Are you? linux.conf.au, February 2002, Brisbane, Australia --- http://www.linux.org.au/conf

rsync+ tidyup (was Re: move rsync development tree to BitKeeper?)

2002-01-02 Thread Martin Pool
EXT, as it specifies the extension for the > batch files. > > Another thought: maybe we should reserve -f and -F for something else and just > stick with the long options? What do you think? That sounds like a good idea, as long as not too many people have started using them alrea

Re: rsync w/ openssh hangs on linux

2002-01-04 Thread Martin Pool
y # ifconfig eth0 mtu 1200 on the firewalled Linux box. -- Martin

Re: rsync for NCR MP-RAS

2002-01-04 Thread Martin Pool
On 4 Jan 2002, Mike Li <[EMAIL PROTECTED]> wrote: > Hi Martin, > > Is there a binary for rsync for NCR MP-RAS ver 3.0 running on Intel PIII > Hardware? I've never heard of that. What is it? > I can't seem to be able to compile the source codes either even th

Re: rsync for NCR MP-RAS

2002-01-04 Thread Martin Pool
2.5.1 > checking build system type... ./config.guess: unable to guess system > type Well what about ./configure --build=i685-ncr-sysv4.3 ? -- Martin

Re: rsync --daemon bypasses directory permissions on Linux (PR#3700)

2002-01-06 Thread Martin Pool
will have the same behaviour. > Running an rsync service should be considered with the same security > caveats as running an ftp service. .. or any other service. I'm open to being convinced that we should change it, but I'm not convinced yet. -- Martin

rsync tree migration in progress

2002-01-06 Thread Martin Pool
I'm going to go ahead and move the source tree from CVS to BitKeeper. Please don't make any commits to CVS until you hear from me. It's fine to make checkouts. -- Martin

migration to BitKeeper

2002-01-06 Thread Martin Pool
nonymous checkout If you have work in progress in CVS, then you should at some point make a patch relative to CVS, and apply that patch to the BitKeeper tree. The CVS server will still be available for historical versions. We will have an unpacked source tree available for anonymous rsync in the near future. -- Martin

Re: rsync for NCR MP-RAS

2002-01-06 Thread Martin Pool
popt. If you have gdb, then this would help gdb ./rsync run --help (probably crashes here) where info locals -- Martin

Re: rsync for NCR MP-RAS (SRV 4)

2002-01-07 Thread Martin Pool
shmeat.net/projects/popt and running the test cases with "make check". If they fail, please try to get a C programmer with access to your machine to find the problem. If they pass, then try installing libpopt and linking rsync against that. (Use "make distclean; ./configure --wit

Re: rsync for NCR MP-RAS

2002-01-09 Thread Martin Pool
ion of the file on the destination, in which case it should be much more efficient than the other two. Also, rsync can detect files which need to be transferred based on date stamps, and can compress data in transit. -- Martin

Re: rsync-2.5.1 / popt patches

2002-01-09 Thread Martin Pool
doesn't require twisting the code too much. -- Martin

Re: Ignoring symbolic links

2002-01-09 Thread Martin Pool
On 9 Jan 2002, Harry Putnam <[EMAIL PROTECTED]> wrote: > > man rysnc says point blank that without the -l flag symbolic links > will be ignored. It also says that -a implies -l. -- Martin

how fast should rsync be?

2002-01-10 Thread Martin Pool
bout CPU and elapsed time, and perhaps also VM usage. I'm going to run some tests along these lines on my machine, and am interested in seeing other results or comments on why they're not a good way to do these measurements. -- Martin

Re: rsync tree migration in progress

2002-01-10 Thread Martin Pool
This looks like too much pain to justify the switch at the moment. I'm going to at least hold it over for a while. Sorry for any inconvenience. -- Martin

Re: patch for 2.5.1 on CygWin

2002-01-13 Thread Martin Pool
erating diffs. Thanks, -- Martin

Re: Error in rsync that I don't understand..

2002-01-14 Thread Martin Pool
On 14 Jan 2002, Dave Dykstra <[EMAIL PROTECTED]> wrote: > I asked Martin to explain how to do this on the rsync web page or better yet > put a prompt for it there but he hasn't said he would or not. Right, we should do that. Pipermail is not ideal. I particularly hate the

batch mode maintainability

2002-01-15 Thread Martin Pool
I'm having second thoughts about merging the rsync+ / batch mode patch into the main rsync release. It adds a lot of extra paths to the code. I can see it will be useful for a few people, but I'm not sure it's sufficiently general to justify being there. Dave? -- Martin

Re: rsynd-2.5.1 / batch.c patch

2002-01-15 Thread Martin Pool
These all look fine, but somewhere along the line they got mangled so that they won't apply properly. Would you mind please sending them to me as an attachment or something? (Yes, I'm lazy ;-) -- Martin

Re: --whole-file option was accidentally changed to --whole

2002-01-15 Thread Martin Pool
#x27;m not sure. -- Martin

Re: batch mode maintainability

2002-01-16 Thread Martin Pool
x27;ve been looking at improving flist and hlink performance, and the intrusive nature of the batch code does not help. -- Martin

Re: SSH

2002-01-23 Thread Martin Pool
I think we should make rsync say something like this when -v is specified: rsync: Attempting connection using "ssh -v samba.org rsync --server" or rsync: Attempting connection to samba.org:873 (12.3.23.32) via proxy gw1:80 (10.61.1.1) -- Martin

Re: I'm unsubscribing and here's why!

2002-01-23 Thread Martin Pool
e "TO CONTAINS rsync@ OR CC CONTAINS rsync@". Please yourself. -- Martin

Re: meaning of "IO Error: skipping the delete...."

2002-01-23 Thread Martin Pool
On 24 Jan 2002, Nitin Agarwal <[EMAIL PROTECTED]> wrote: > Dear Mr. Martin, > I am dead sure that none of the process was running which was creating files on > that file system. Further, our process are not creating any files having last > extension as "0003". Kindly

Re: access denied error with rsync 2.5.1

2002-01-24 Thread Martin Pool
g the machine's IP address rather than its hostname. -- Martin

Re: meaning of "IO Error: skipping the delete...."

2002-01-25 Thread Martin Pool
On 25 Jan 2002, Nitin Agarwal <[EMAIL PROTECTED]> wrote: > Dear Mr. Martin, > Thanks for the reply. > We tried as per your advice. Now, its not showing us any errors. > > But, we observed that while copying the files from the main server to the backup > machine, rsync is

#129135: configure tests for HAVE_STRUCT_STAT_ST_RDEV

2002-01-25 Thread Martin Pool
Thankyou dann for the patch, and Colin for reminding me. Well done. This is in CVS and will be in 2.5.2. -- Martin

--ignore-existing patch merged into rsync

2002-01-25 Thread Martin Pool
This option will be in the rsync distribution from 2.5.2 onwards. Thankyou, -- Martin

Re: rsync: future of the --server option

2002-01-25 Thread Martin Pool
On 25 Jan 2002, "Martin A. Brown" <[EMAIL PROTECTED]> wrote: > Can anybody here shed any light for me on whether or not the --server > option is here to stay? Yes it is. I guess it would be OK to have a manual section that says they're for internal use only. -- Martin

Re: Rsync 2.5.2 -v too verbose?

2002-02-04 Thread Martin Pool
On 30 Jan 2002, Wayne Davison <[EMAIL PROTECTED]> wrote: > On Wed, 30 Jan 2002, Dave Dykstra wrote: > > Martin has put in the below feature in rsync 2.5.2 for using a shell. I've > > already had one user complain about it. I think it would be better at the > > -

  1   2   3   4   5   6   7   >