Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: zsh 5.6 regression: a pipe sometimes yields a TTOU signal



As a workaround, putting the middle command in { } can help a bit.
For instance, instead of

  echo foo | { cat | less -+c -FX }

writing

  echo foo | { { cat } | less -+c -FX }

seems to avoid the issue most of the time, and

  echo foo | { { sleep 0.001; cat } | less -+c -FX }

is even better.

-- 
Vincent Lefèvre <vincent@xxxxxxxxxx> - Web: <https://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Messages sorted by: Reverse Date, Date, Thread, Author