august3 has asked for the wisdom of the Perl Monks concerning the following question:

Hi all,

We have a system where couple of unix users create MS-word documents under unix using citirx client and windows terminal service. I am required to post these doc files to a website. I am looking for an easy solution. Is there a perl module or code to handle this situation. Like convert MS-word doc files or RTF files to html using perl or any macro under unix. Thanks in advance for all suggestions.
Augustine

  • Comment on Any perl module or perl code to convert RTF docs/ MS word Docs to html under unix

Replies are listed 'Best First'.
Re: Any perl module or perl code to convert RTF docs/ MS word Docs to html under unix
by kvale (Monsignor) on Oct 27, 2004 at 18:56 UTC
    There is a module RTF::HTML::Converter that can convert RTF docs to HTML:
    use strict; use RTF::HTML::Converter; my $object = RTF::HTML::Converter->new( output => \*STDOUT); $object->parse_stream( \*RTF_FILE );

    -Mark

Re: Any perl module or perl code to convert RTF docs/ MS word Docs to html under unix
by kutsu (Priest) on Oct 27, 2004 at 19:08 UTC
Re: Any perl module or perl code to convert RTF docs/ MS word Docs to html under unix
by xorl (Deacon) on Oct 27, 2004 at 20:01 UTC
    Not really a Perl solution but check out http://wvware.sourceforge.net/