Excellent!!  I thank you both!<br><br><div class="gmail_quote">On Mon, Mar 16, 2009 at 3:44 PM, Eli Heady <span dir="ltr">&lt;<a href="mailto:eli.heady@gmail.com">eli.heady@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im">On Mon, Mar 16, 2009 at 3:24 PM, David J. Pryke &lt;<a href="mailto:david-wplug@pryke.us">david-wplug@pryke.us</a>&gt; wrote:<br>
&gt; George Larson wrote:<br>
&gt;&gt; &quot;*Konqueror .*&quot;  This has mostly the desired effect but I don&#39;t want my<br>
&gt;&gt; shell to freeze until I am done using the program that I have just<br>
&gt;&gt; started.  Isn&#39;t an easy way to accomplish this escaping me?<br>
&gt;<br>
&gt; Append an ampersand after the command:<br>
&gt;<br>
&gt; $&gt; Konqueror &amp;<br>
<br>
</div>The above will let Konqueror litter your still useable shell with<br>
error messages and other output (which may be what you want at times).<br>
To keep your original shell clean, and ignore output from the<br>
just-spawned process,<br>
<br>
konqueror 2&amp;&gt;1 &gt; /dev/null &amp;<br>
<br>
2&amp;&gt;1 redirects standard error to standard out, &gt; /dev/null directs<br>
stdout to /dev/null.<br>
<div><div></div><div class="h5">_______________________________________________<br>
wplug mailing list<br>
<a href="mailto:wplug@wplug.org">wplug@wplug.org</a><br>
<a href="http://www.wplug.org/mailman/listinfo/wplug" target="_blank">http://www.wplug.org/mailman/listinfo/wplug</a><br>
</div></div></blockquote></div><br>