From owner-freebsd-questions@FreeBSD.ORG Tue Feb 2 22:20:55 2010 Return-Path: Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47AD5106566B for ; Tue, 2 Feb 2010 22:20:55 +0000 (UTC) (envelope-from mail@ozzmosis.com) Received: from smtp.mel.people.net.au (smtp.mel.people.net.au [218.214.17.98]) by mx1.freebsd.org (Postfix) with SMTP id 824B48FC0C for ; Tue, 2 Feb 2010 22:20:54 +0000 (UTC) Received: (qmail 9706 invoked from network); 2 Feb 2010 22:20:37 -0000 Received: from unknown (HELO smtp.phoenix) (218.215.170.163) by smtp.mel.people.net.au with SMTP; 2 Feb 2010 22:20:37 -0000 Received: by smtp.phoenix (Postfix, from userid 1001) id D91931733F; Wed, 3 Feb 2010 09:20:50 +1100 (EST) Date: Wed, 3 Feb 2010 09:20:50 +1100 From: andrew clarke To: Gary Kline Message-ID: <20100202222050.GA17868@ozzmosis.com> References: <20100202204438.GA24631@thought.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20100202204438.GA24631@thought.org> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: FreeBSD Mailing List Subject: Re: wps to odt? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2010 22:20:55 -0000 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