From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/69819 Path: news.gmane.org!not-for-mail From: Dan Christensen Newsgroups: gmane.emacs.gnus.general Subject: Re: Display OpenOffice Writer files inline with odt2txt] Date: Tue, 20 Jul 2010 11:06:48 -0400 Message-ID: <87hbjufb07.fsf@uwo.ca> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1279638485 10113 80.91.229.12 (20 Jul 2010 15:08:05 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 20 Jul 2010 15:08:05 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M18209@lists.math.uh.edu Tue Jul 20 17:07:59 2010 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ObEQE-0004hh-8q for ding-account@gmane.org; Tue, 20 Jul 2010 17:07:54 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1ObEPS-0002ZC-Ae; Tue, 20 Jul 2010 10:07:06 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1ObEPQ-0002Z0-Ob for ding@lists.math.uh.edu; Tue, 20 Jul 2010 10:07:04 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1ObEPL-00033f-8h for ding@lists.math.uh.edu; Tue, 20 Jul 2010 10:07:04 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1ObEPK-0007Jc-00 for ; Tue, 20 Jul 2010 17:06:58 +0200 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1ObEPI-0004Hy-Vy for ding@gnus.org; Tue, 20 Jul 2010 17:06:57 +0200 Original-Received: from bas3-london14-1096778155.dsl.bell.ca ([65.95.129.171]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 20 Jul 2010 17:06:56 +0200 Original-Received: from jdc by bas3-london14-1096778155.dsl.bell.ca with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 20 Jul 2010 17:06:56 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 13 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: bas3-london14-1096778155.dsl.bell.ca User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.1.50 (gnu/linux) Cancel-Lock: sha1:vR9bO6IShfX6aFaZUX1VERC0MqU= X-Spam-Score: -0.5 (/) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:69819 Archived-At: JJ writes: > I'm not up to rewriting odt2txt source to enable standard input. Save these four lines to a file called odt2txt-stdin in your path, make it executable, and use it instead: #!/bin/sh TMPFILE=`tempfile` cat > $TMPFILE exec odt2txt $TMPFILE Dan