in reply to Any perl module or perl code to convert RTF docs/ MS word Docs to html under unix
use strict; use RTF::HTML::Converter; my $object = RTF::HTML::Converter->new( output => \*STDOUT); $object->parse_stream( \*RTF_FILE ); [download]
-Mark