Re: sed "Hello, world!" program?

"Davide Brini" <[email protected]>
Newsgroups gmane.editors.sed.user
Message-ID <[email protected]>
> ----- Original Message -----
> From: Tim Chase
> Sent: 02/21/14 11:50 PM
> To: [email protected]
> Subject: Re: sed "Hello, world!" program?
> 
> C:\Temp>python stde.py 2>&1 > ste.txt
> On stderr

Redirections are executed in the order they appear on the command line. The above would equally "not work" under a UNIX shell. You need

python stde.py > ste.txt 2>&1

-- 
D.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.