Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to convert all Linux man pages to either plain text, html or markdown?

I need to do this for every man file I have installed on my system.

share|improve this question

2 Answers

up vote 3 down vote accepted

Yes... To convert one of them, say, man of man:

zcat /usr/share/man/man1/man.1.gz  | groff -mandoc -Thtml

If you want 'all of installed on your PC', you just iterate through them. For different output (text, for example), use different 'device' (the -T argument).

Just in case... if the 'iteration' was the real problem, you can use:

OUT_DIR=...

for i in `find -name '*.gz'`; do 
    dname=`dirname $i`
    mkdir -p $OUT_DIR/$dname
    zcat $i | groff -mandoc -Thtml > $OUT_DIR/$i.html
done
share|improve this answer
Thanks, I guess I could build a script to do it... I am looking for a sane way of converting all the man files, not just one. – KJS Nov 17 '12 at 19:35

Today is your lucky day. Someone has already done this for you. http://linux.die.net/

share|improve this answer
1  
But some of the pages there are rumored to be not up to date. kernel.org/doc/man-pages is also a good place. – Basile Starynkevitch Nov 17 '12 at 21:37
@Basile - cool. Good to know. I would suspect that kernel.org would be up to date. Thanks! – cowboydan Nov 18 '12 at 2:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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