I use catdoc
to preview Word documents from the command line. Is there something similar for HTML?
In other words I would like to do cathtml Webpage.html | less
and get more or less a man
page look output.
I use catdoc
to preview Word documents from the command line. Is there something similar for HTML?
In other words I would like to do cathtml Webpage.html | less
and get more or less a man
page look output.
One solution is to use
lynx -dump
, as inor
Better:
Use
w3m -dump
, it respects the page layout. It is awesome.You can set the number of columns of the terminal for getting the better layout, for example, if you are using a full-window terminal, 200 can be a good try:
You can use
html2text
to look into an HTML document from command line.but not exactly a look similar to man pages, it depends on the html input, of course.
You could use
w3m
which should already installed - if however it isn'tAn example command syntax:
It can be used with both URL's as well as file-based html files
There are these so-called text html browsers, of which I have successfully tested Lynks and eLinks. Of which elinks has became my favorite.
Anyway, they are different than a "web page previewers" as you suggest in your question. They are more like active real time browsers, which carries on lots of useful features for an easy web browsing and of course, you can also use it for local/remote web pages preview.
Information about Lynks is in the wikipedia and can be reached clicking here. The information related to the elinks is here.
My elinks screenshot for you to see elinks in action:
You can combine a use of
html2text
andmdless
.Alternativly plus
curl
to download the file firstThe curl does download the file in the
stdin
ofhtml2text
. This givesmdless
the markdown which will be shown like a pager.It is not the same as the
man
pages. And you can't click on links like on real browser, for that usew3m
orelinks