Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Feb 2010 09:20:50 +1100
From:      andrew clarke <mail@ozzmosis.com>
To:        Gary Kline <kline@thought.org>
Cc:        FreeBSD Mailing List <freebsd-questions@FreeBSD.ORG>
Subject:   Re: wps to odt?
Message-ID:  <20100202222050.GA17868@ozzmosis.com>
In-Reply-To: <20100202204438.GA24631@thought.org>
References:  <20100202204438.GA24631@thought.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Tue 2010-02-02 12:44:41 UTC-0800, Gary Kline (kline@thought.org) wrote:

> is there such a converter that sends m$ Works [.wps] to odt?

AbiWord.

And a quick-and-dirty shell script to convert all .wps (Microsoft
Works) word processor files in the current directory to .odt
(OpenDocument Text):

#!/bin/sh

for fn in *.wps; do
  abiword --to=odt $fn
done

Regards
Andrew



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20100202222050.GA17868>