Re: piping tidy output to a pager program

> My little question is why it (seemingly) is not possible to
> capture the output of tidy in a pager program. If I do
>
> 	tidy -e foo.html | most
>
> it is as if the output stream is terminated just before the
> pager program is launched leaving it with an emty buffer?

Don't the errors come out on stderr?
So,

	tidy -e foo.html |& most

to get everything paged.

Received on Thursday, 21 March 2002 02:21:18 UTC