<br><div class="gmail_quote">On Mon, Dec 6, 2010 at 10:22 AM, Antonio Sun <span dir="ltr">&lt;<a href="mailto:antoniosun@lavabit.com">antoniosun@lavabit.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hi, <div><br></div><div>I have the following code in a loop:</div><div><br></div><div><div><span style="white-space:pre-wrap">        </span>    <span style="white-space:pre-wrap">open(OUTFILE, &quot;$cmd &gt;&gt; myfile&quot;);   # append write</span> </div>

<div><span style="white-space:pre-wrap">        </span>    print OUTFILE content();</div><div><span style="white-space:pre-wrap">        </span>    close(OUTFILE);</div></div><div><div><span style="white-space:pre-wrap"><br>
</span></div><div><span style="white-space:pre-wrap">T</span>he $cmd is a complicated sed command. For simplicity purpose, let&#39;s say it is </div><div><br></div><div>  | sed -n &#39;10,20p&#39; </div>
<div><br></div><div>I.e., printing only lines 10~20 of the content of each loop. </div><div><br></div><div>My goal is to write to STDOUT instead of a fixed file. I tried to change the above open statement with</div><div>
<br>
</div><div><span style="white-space:pre-wrap">        </span>    open(OUTFILE, &quot;$cmd &gt;-&quot;);   # write to STDOUT</div></div><div><br></div><div>or,</div><div><br></div><div><div><span style="white-space:pre-wrap">        </span>    open(OUTFILE, &quot;$cmd &gt;&gt;-&quot;);   # write to STDOUT</div>

</div><div><br></div><div>but didn&#39;t get any output. </div></blockquote><div><br></div><div>Thank you Richard to have solved my problem. -- I was too carried away with redirections. As you&#39;ve pointed out, this alone work just as expected:<br>
</div><div><br></div><div> <span class="Apple-tab-span" style="white-space:pre">        </span>    open(OUTFILE, &quot;$cmd&quot;);   # write to STDOUT</div><div><br></div></div>Thanks<div><br></div>