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.