Re: stdbuf does not work

2018-08-19 Thread Donald Krieger via cygwin
; switches here:     https://github.com/rprichard/winpty/issues/103 Thanks again. Best - Don From: Eliot Moss To: cygwin@cygwin.com Sent: Saturday, August 18, 2018 1:01 PM Subject: Re: stdbuf does not work Donald emailed me directly that this: xgraph ... | strbuf -oL -eL tr -d '\015

Re: stdbuf does not work

2018-08-18 Thread Eliot Moss
Donald emailed me directly that this: xgraph ... | strbuf -oL -eL tr -d '\015' | ... does not fix the problem. While I don't recall his ever having described "the problem" that he is trying to use strbuf to solve, I now gather that it has to do with xgraph doing more buffering of output than he

Re: stdbuf does not work

2018-08-18 Thread Marco Atzeri
Am 18.08.2018 um 16:28 schrieb Eliot Moss: On 8/18/2018 10:17 AM, Donald Krieger via cygwin wrote: Dear Eliot, Thanks for getting back so quickly.Program1 is a windows routine, xgraph.  http://www.xgraph.org/ms/index.htmlThis is a general purpose plotting program which writes out text whenever

Re: stdbuf does not work

2018-08-18 Thread Eliot Moss
On 8/18/2018 10:17 AM, Donald Krieger via cygwin wrote: Dear Eliot, Thanks for getting back so quickly.Program1 is a windows routine, xgraph.   http://www.xgraph.org/ms/index.htmlThis is a general purpose plotting program which writes out text whenever an operation is performed in its graphic wi

Re: stdbuf does not work

2018-08-18 Thread Donald Krieger via cygwin
hanks again and for any further thoughts. Best - Don From: Eliot Moss To: cygwin@cygwin.com Sent: Saturday, August 18, 2018 9:14 AM Subject: Re: stdbuf does not work On 8/18/2018 8:36 AM, Donald Krieger via cygwin wrote: > Dear list, > I require line buffered output from progr

Re: stdbuf does not work

2018-08-18 Thread Eliot Moss
On 8/18/2018 8:36 AM, Donald Krieger via cygwin wrote: Dear list, I require line buffered output from program1 and line buffered input to program2.The following works under Linux but not under Cygwin.   stdbuf -oL -eL program 1 |& program2 I've searched the archive without success.I have tried

stdbuf does not work

2018-08-18 Thread Donald Krieger via cygwin
Dear list, I require line buffered output from program1 and line buffered input to program2.The following works under Linux but not under Cygwin.   stdbuf -oL -eL program 1 |& program2 I've searched the archive without success.I have tried -o0 -e0 -i0 and have also tried   stdbuf -oL -eL progra