[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Redirecting pipes?
From: |
Paul Jarc |
Subject: |
Re: Redirecting pipes? |
Date: |
Sat, 19 Oct 2002 16:08:30 -0400 |
User-agent: |
Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.2 (i686-pc-linux-gnu) |
"Eric S. Raymond" <esr@snark.thyrsus.com> wrote:
> What I need is to be able to write something like this:
>
> tmpfile=/tmp/56tred3a23.xml
> xsltproc $tmpfile 2| sed -e ":$tmpfile:s::foobar.xml:"
{ xsltproc "$tmpfile" 2>&1 >&3 | sed -e ":$tmpfile:s::foobar.xml:" } 3>&1
paul