<p>More accurately &quot;cmd &gt; file&quot;, because that&#39;s redirection of stdout, not a pipe...</p>
<p>--<br>
Sent from my phone... a G2 running CM7 nightlies!</p>
<div class="gmail_quote">On Mar 15, 2011 4:02 PM, &quot;Geoffrey Myers&quot; &lt;<a href="mailto:lists@serioustechnology.com">lists@serioustechnology.com</a>&gt; wrote:<br type="attribution">&gt; Jim Kinney wrote:<br>&gt;&gt; vs. cmd1; cmd2  which is run command 1 then command 2 regardless of<br>
&gt;&gt; end status of 1<br>&gt;&gt; <br>&gt;&gt; or cmd1 | cmd2  while take stdout of cmd1 and stdin for cmd2<br>&gt;&gt; <br>&gt;&gt; or...<br>&gt; <br>&gt; cmd1 &gt; cmd2<br>&gt; <br>&gt; which writes the output of cmd1 to cmd2.  Hopefully your cmd2 was not in <br>
&gt; this directory when you did this. :)<br>&gt; <br>&gt;&gt; <br>&gt;&gt; On Tue, Mar 15, 2011 at 2:49 PM, Michael Trausch &lt;<a href="mailto:mike@trausch.us">mike@trausch.us</a>&gt; wrote:<br>&gt;&gt;&gt; cmd1 &amp;&amp; cmd2<br>
&gt;&gt;&gt;<br>&gt;&gt;&gt; The &amp;&amp; says run cmd2 only if the exit status of cmd1 indicates success (that<br>&gt;&gt;&gt; is, is 0). The opposite of that is:<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; cmd1 || cmd2<br>&gt;&gt;&gt;<br>
&gt;&gt;&gt; Which says to run cmd2 if the exit status of cmd1 is something other than 0.<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; --<br>&gt;&gt;&gt; Sent from my phone... a G2 running CM7 nightlies!<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; On Mar 15, 2011 1:57 PM, &quot;Ron Frazier&quot; &lt;<a href="mailto:atllinuxenthinfo@c3energy.com">atllinuxenthinfo@c3energy.com</a>&gt;<br>
&gt;&gt;&gt; wrote:<br>&gt;&gt;&gt;&gt; Could you explain what that does? Are you saying enter both commands on<br>&gt;&gt;&gt;&gt; the same line like you typed it?<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; Sincerely,<br>&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Ron<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; On 03/15/2011 01:22 PM, JD wrote:<br>&gt;&gt;&gt;&gt;&gt; Perhaps I&#39;m crazy, but I always do<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt; sudo apt-get update&amp;&amp; sudo apt-get upgrade<br>
&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt; together before installing any new packages. This keeps all the<br>&gt;&gt;&gt;&gt;&gt; underlying packages current - that could be the issue you are seeing<br>
&gt;&gt;&gt;&gt;&gt; between the different systems. In real-time programming, this is known<br>&gt;&gt;&gt;&gt;&gt; as data homogeneity. All the data on a specific thread/priority cannot<br>&gt;&gt;&gt;&gt;&gt; be changed by outside priorities until the thread/priority finishes.<br>
&gt;&gt;&gt;&gt;&gt; Basically, you get consistent data before you begin processing.<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt; I do agree that not doing the &quot;upgrade&quot; should work provided you aren&#39;t<br>
&gt;&gt;&gt;&gt;&gt; too out of date with patches. I&#39;ve just never wanted to test that.<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt; On 03/15/2011 12:42 PM, Ron Frazier wrote:<br>
&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; Preston,<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; I can&#39;t say what happened. The commands below worked on the other PC&#39;s<br>&gt;&gt;&gt;&gt;&gt;&gt; with no problem. PC #3 is running the same version of Ubuntu, but the<br>
&gt;&gt;&gt;&gt;&gt;&gt; process failed and threw the errors I posted. I tried it yesterday, but<br>&gt;&gt;&gt;&gt;&gt;&gt; I have no explanation. Once I installed that one package manually, the<br>&gt;&gt;&gt;&gt;&gt;&gt; rest worked. I actually did the last two commands from synaptic, but the<br>
&gt;&gt;&gt;&gt;&gt;&gt; result should be the same either way.<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; sudo add-apt-repository ppa:libreoffice/ppa<br>&gt;&gt;&gt;&gt;&gt;&gt; sudo apt-get update<br>&gt;&gt;&gt;&gt;&gt;&gt; sudo apt-get install libreoffice<br>
&gt;&gt;&gt;&gt;&gt;&gt; sudo apt-get install libreoffice-gnome<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; Sincerely,<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; Ron<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; On 03/15/2011 11:17 AM, Preston Boyington wrote:<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt; Ron Frazier wrote:<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; I was trying to install Libre Office on my 3rd PC using the PPA as<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; described in prior posts. It threw up a bunch of dependency errors:<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &lt;SNIPPED&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; I tried the same thing from synaptic and got the same result. From<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; synaptic, I installed libreoffice-common manually, then was able to<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; install libreoffice and libreoffice-gnome with no problem. I don&#39;t<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; know<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; what was different on this PC, but it seems to be working now.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt; just curious, but has the PPA been updated or is your Ubuntu system<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt; using slightly different sources?<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; --<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; (PS - If you email me and don&#39;t get a quick response, you might want to<br>
&gt;&gt;&gt;&gt; call on the phone. I get about 300 emails per day from alternate energy<br>&gt;&gt;&gt;&gt; mailing lists and such. I don&#39;t always see new messages very quickly.)<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; Ron Frazier<br>
&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; 770-205-9422 (O) Leave a message.<br>&gt;&gt;&gt;&gt; linuxdude AT <a href="http://c3energy.com">c3energy.com</a><br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt;&gt; Ale mailing list<br>&gt;&gt;&gt;&gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>&gt;&gt;&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo/ale">http://mail.ale.org/mailman/listinfo/ale</a><br>&gt;&gt;&gt;&gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>
&gt;&gt;&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo">http://mail.ale.org/mailman/listinfo</a><br>&gt;&gt;&gt; _______________________________________________<br>&gt;&gt;&gt; Ale mailing list<br>&gt;&gt;&gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
&gt;&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo/ale">http://mail.ale.org/mailman/listinfo/ale</a><br>&gt;&gt;&gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>&gt;&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo">http://mail.ale.org/mailman/listinfo</a><br>
&gt;&gt;&gt;<br>&gt;&gt;&gt;<br>&gt;&gt; <br>&gt;&gt; <br>&gt;&gt; <br>&gt; <br>&gt; <br>&gt; -- <br>&gt; Until later, Geoffrey<br>&gt; <br>&gt; &quot;I predict future happiness for America if they can prevent<br>&gt; the government from wasting the labors of the people under<br>
&gt; the pretense of taking care of them.&quot;<br>&gt; - Thomas Jefferson<br>&gt; _______________________________________________<br>&gt; Ale mailing list<br>&gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>&gt; <a href="http://mail.ale.org/mailman/listinfo/ale">http://mail.ale.org/mailman/listinfo/ale</a><br>
&gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>&gt; <a href="http://mail.ale.org/mailman/listinfo">http://mail.ale.org/mailman/listinfo</a><br></div>