up vote 0 down vote favorite
share [g+] share [fb]

I work in bash/xterm a lot, and do a lot of filtering of HTML. What I was wondering is if there is a simple way to highlight html to stdout?

Something like:

$ cat file.html | [some html highlighting utility]

Would output syntax colored HTML to standard out, assuming $TERM is xterm-color or xterm-256color.

Is there anything like that out there?

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

Yes and it's called highlight, I used to run highlight -q -s vim-dark -M file (-M means --xterm256)

There is another option, Pygments if you are Python fan, you will like it. You can just run pygmentize example.html.

link|improve this answer
Pygments works perfectly. Thanks! – Bryan Ross Jun 29 '10 at 16:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.