[Tutor] Convert man file into readable text file

alan.gauld@bt.com alan.gauld@bt.com
Fri, 14 Jun 2002 12:22:20 +0100


> I'm a newbie. I want to make a python script to convert a man 
> file into a readable text file 

As an excercise fine but you could just do:

nroff -man foo.man > foo.txt

Its easier, faster and probably more useful since it will 
create the paragraphs and headings etc correctly....

Alan G.