From mboxrd@z Thu Jan 1 00:00:00 1970 From: erik quanstrom Date: Sun, 18 Oct 2009 17:33:53 -0400 To: 9fans@9fans.net Message-ID: In-Reply-To: <> References: <> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] fmt(1) standard behaviour Topicbox-Message-UUID: 89d72a14-ead5-11e9-9d60-3106f5b1d025 > it never actually formats any lines. If, on the other hand, while > formatting on stdin, fmt(1) formatted on a line-by-line basis (per > '\n'), then its use (at least for me) could be greatly widened. i don't think this will help. unless you multithread fmt (seems silly), you're going to have the input or output blocking problem. you can imagine an arbitrarly long line choking your proposed setup, as you can imagine that outputting on '\n' to confuse you if you expect output after every line. - erik