rsync hangs in read_int (generator.c line 498)

2002-03-05 Thread Ryan T. Sammartino
latest available from Cygwin mirrors). What other information can I provide that might help this get resolved? Also, what's the recommended way of shutting off the signal handler (so that I can ^C in gdb and not exit the program). CC: me on replies please. -- Ryan T. Sammartino http://mem

New option: --progress-newline

2006-05-11 Thread Ryan T. Sammartino
In trying to write a nice GUI for rsync, it was difficult to read rsync's stdout when using --progress, as --progress uses \r to make things pretty on a terminal, but it's painful to read into another process. The attached patch made it much easier for me to read and parse the output from --progr

RE: New option: --progress-newline

2006-05-13 Thread Ryan T. Sammartino
Well... shouldn't be that much of a problem? Putting this tr command in the pipe should help: tr '\r' '\n' You assume I am working in a sane environment. :) A bigger issue may be that output is buffered when writing into a pipe, which means you only get rsync's output when the buffer is