On Tue, Aug 04, 1998 at 11:35:42AM +0100, Tethys wrote:
>
> Does anyone know of a web browser that can accept HTML from standard
> input? I have a program that generates HTML, which I'd like to just
> pipe into my web browser. I can't se ehow to do it with the two I've
> got (Netscape and Lynx).
>
> BTW, I'm using Sparc Linux, so binary only Intel browsers are no use
> to me.
Try the following:
mkfifo foo.html
your_program > foo.html
Then switch to another console and type
lynx foo.html
:)
All in *nix is file.
I hope mkfifo is not Intel-specific (it's in fileutils). :)
--
Alexey Vyskubov