On 5/1/07, <b class="gmail_sendername">Hubertus Hiden</b> <<a href="mailto:hubertus@hiden.org">hubertus@hiden.org</a>> wrote:<div><span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Mitch Contla schrieb:<br><br>> If I understand you correctly, you are trying to print the actual<br>> source html file. Why not open a shell and use lp (or lpr):<br>><br>> $ lp /path/to/your/files/*.html<br>>
<br>> This will send each file to your default printer as a single job.<br>><br>> --<br>> Mitch<br><br>Sorry, that's what I've forgot to mention. I don't want to print the<br>source, I want to print the rendered html. And therefore I guess that I
<br>need to pass the html file over to firefox or something similar and then<br>start the printing process.<br><br><br>Hubertus<br><br>--<br>ubuntu-users mailing list<br><a href="mailto:ubuntu-users@lists.ubuntu.com">ubuntu-users@lists.ubuntu.com
</a><br>Modify settings or unsubscribe at: <a href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-users">https://lists.ubuntu.com/mailman/listinfo/ubuntu-users</a><br></blockquote></div><br>Then Jakob's earlier suggestion is probably your best bet:
<br><span><br>>>If you're sure they are fitting on one page, you could try something<br>>>like this:<br>>>for i in *.html ; do elinks -dump $i |lp ; done<br><br>lynx, links2 and elinks all have a -dump command that prints the formatted output of a URL (or file) to stdin. Piping that to lp is this simplest solution.
<br>-- <br>Mitch<br></span><br><br>