On Wed, 14 Aug 2002, Fabian Cenedese wrote: > Hi > > What is the easiest way to view/print the wine-help files that are in sgml? > I fiddled around with sgmltools but couldn't get a useful output (I guess I > just gave up too early, don't want to consider the other option :). What do > others use for viewing them? > > Thanks > > Fabi > I use this:
#!/bin/sh #<wine>/documentation/*.sgml reader (c) 2000- Lawson Whitney # Use, distribute, or change at your own risk. sed -e 's/<[^<>]*>//g' -e 's/</</g' -e 's/>/>/g' $1 |less -ni Lawson ---oops---