Re: content of file

2009-08-31 Thread Wayne Davison
On Sun, Aug 30, 2009 at 02:53:12PM -0400, Mag Gam wrote: > Instead of copying the whole file, I rather use some sort of pipe. > thats all I assume you're using an rsync daemon, otherwise you could just use "ssh host tail -f file" or similar. If data is always being appended, see the --append opti

Re: content of file

2009-08-30 Thread Mag Gam
Basically, I am trying to read a file on the network without taking up all of my bandwidth. Typically, I rsync the file very slowly with bwlimits and do a tail -f | grep "foo" Instead of copying the whole file, I rather use some sort of pipe. thats all On Fri, Aug 28, 2009 at 2:23 PM, Matt McCutc

Re: content of file

2009-08-28 Thread Matt McCutchen
On Thu, 2009-08-27 at 22:57 -0400, Mag Gam wrote: > Is it possible to stream the content of a file using rsync to stdout > instead of placing it into a file? No. Consider rdiff, which lets you call each of the three steps of the delta-transfer algorithm from a script. Or if you explain your use

Re: content of file

2009-08-28 Thread Mag Gam
ofcourse, but I really don't want to copy the file to destination. I would like to direct it to a buffer or a pipe. Is that possible? On Fri, Aug 28, 2009 at 2:49 AM, Simon Powell wrote: > You could just cat it? > > On 28 Aug 2009, at 03:57, Mag Gam wrote: > >> Is it possible to stream the conten

Re: content of file

2009-08-27 Thread Simon Powell
You could just cat it? On 28 Aug 2009, at 03:57, Mag Gam wrote: Is it possible to stream the content of a file using rsync to stdout instead of placing it into a file? -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options: https://lis

content of file

2009-08-27 Thread Mag Gam
Is it possible to stream the content of a file using rsync to stdout instead of placing it into a file? -- 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.cat