<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Food for Thought</title>
	<atom:link href="http://jeredsutton.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jeredsutton.com</link>
	<description>Musings and snippets that I have found helpful, interesting, motivational, etc.</description>
	<lastBuildDate>Tue, 07 May 2013 08:11:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Bash Parallel Execution by Ole Tange</title>
		<link>http://jeredsutton.com/2013/04/14/bash-parallel-execution/#comment-167</link>
		<dc:creator><![CDATA[Ole Tange]]></dc:creator>
		<pubDate>Tue, 07 May 2013 08:11:41 +0000</pubDate>
		<guid isPermaLink="false">http://jeredsutton.com/?p=151#comment-167</guid>
		<description><![CDATA[But that is exactly my point: If you are able to write in your homedir then &#039;wget -O – pi.dk/3 &#124; sh&#039; will install it in 10 seconds. You do not need write permission anywhere else.]]></description>
		<content:encoded><![CDATA[<p>But that is exactly my point: If you are able to write in your homedir then &#8216;wget -O – pi.dk/3 | sh&#8217; will install it in 10 seconds. You do not need write permission anywhere else.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bash Parallel Execution by JeredSutton</title>
		<link>http://jeredsutton.com/2013/04/14/bash-parallel-execution/#comment-166</link>
		<dc:creator><![CDATA[JeredSutton]]></dc:creator>
		<pubDate>Mon, 06 May 2013 11:41:51 +0000</pubDate>
		<guid isPermaLink="false">http://jeredsutton.com/?p=151#comment-166</guid>
		<description><![CDATA[Parallel is an excellent option if it is installed, or if you have the ability to install it.]]></description>
		<content:encoded><![CDATA[<p>Parallel is an excellent option if it is installed, or if you have the ability to install it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bash Parallel Execution by Ole Tange</title>
		<link>http://jeredsutton.com/2013/04/14/bash-parallel-execution/#comment-165</link>
		<dc:creator><![CDATA[Ole Tange]]></dc:creator>
		<pubDate>Mon, 29 Apr 2013 13:11:20 +0000</pubDate>
		<guid isPermaLink="false">http://jeredsutton.com/?p=151#comment-165</guid>
		<description><![CDATA[I am trying to figure out what bgx can do that you cannot do by using GNU Parallel (10 seconds installation: wget -O - pi.dk/3 &#124; sh).

It seems your example could be written:

  cat hosts &#124; parallel -q -j 20 ssh {} echo &#039;$(hostname),$(cat /etc/debian_version)&#039;

or:

  parallel --slf hosts -j 20 --nonall echo &#039;$(hostname),$(cat /etc/debian_version)&#039;]]></description>
		<content:encoded><![CDATA[<p>I am trying to figure out what bgx can do that you cannot do by using GNU Parallel (10 seconds installation: wget -O &#8211; pi.dk/3 | sh).</p>
<p>It seems your example could be written:</p>
<p>  cat hosts | parallel -q -j 20 ssh {} echo &#8216;$(hostname),$(cat /etc/debian_version)&#8217;</p>
<p>or:</p>
<p>  parallel &#8211;slf hosts -j 20 &#8211;nonall echo &#8216;$(hostname),$(cat /etc/debian_version)&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ssh-copy-id missing in OS X by JeredSutton</title>
		<link>http://jeredsutton.com/2013/04/21/ssh-copy-id-missing-in-os-x/#comment-144</link>
		<dc:creator><![CDATA[JeredSutton]]></dc:creator>
		<pubDate>Mon, 22 Apr 2013 12:03:50 +0000</pubDate>
		<guid isPermaLink="false">http://jeredsutton.com/?p=159#comment-144</guid>
		<description><![CDATA[There is nothing particularly wrong with it, I just prefer how ssh-copy-id behaves by default when the .ssh directory doesn&#039;t exist or when there may be other keys in the authorized_keys file already.]]></description>
		<content:encoded><![CDATA[<p>There is nothing particularly wrong with it, I just prefer how ssh-copy-id behaves by default when the .ssh directory doesn&#8217;t exist or when there may be other keys in the authorized_keys file already.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ssh-copy-id missing in OS X by mysupportpad</title>
		<link>http://jeredsutton.com/2013/04/21/ssh-copy-id-missing-in-os-x/#comment-142</link>
		<dc:creator><![CDATA[mysupportpad]]></dc:creator>
		<pubDate>Mon, 22 Apr 2013 05:15:46 +0000</pubDate>
		<guid isPermaLink="false">http://jeredsutton.com/?p=159#comment-142</guid>
		<description><![CDATA[What is wrong with scp .ssh/authorized_keys host:~./ssh/ ?  I mean even on Linux this is how I have  always done it.  Oh well many ways to the same outcome.  I guess we can all be happy :)]]></description>
		<content:encoded><![CDATA[<p>What is wrong with scp .ssh/authorized_keys host:~./ssh/ ?  I mean even on Linux this is how I have  always done it.  Oh well many ways to the same outcome.  I guess we can all be happy <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bash Best(ish) practices part 4 by kriskenyon</title>
		<link>http://jeredsutton.com/2013/03/29/bash-bestish-practices-part-4/#comment-93</link>
		<dc:creator><![CDATA[kriskenyon]]></dc:creator>
		<pubDate>Sat, 30 Mar 2013 03:17:18 +0000</pubDate>
		<guid isPermaLink="false">http://jeredsutton.com/?p=150#comment-93</guid>
		<description><![CDATA[I found it useful. So there now you know!]]></description>
		<content:encoded><![CDATA[<p>I found it useful. So there now you know!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bash Best(ish) practices part 1 by Bash Best(ish) practices part 2 &#124; Food for Thought</title>
		<link>http://jeredsutton.com/2013/03/09/bash-bestish-practices-part-1/#comment-84</link>
		<dc:creator><![CDATA[Bash Best(ish) practices part 2 &#124; Food for Thought]]></dc:creator>
		<pubDate>Sat, 30 Mar 2013 02:18:48 +0000</pubDate>
		<guid isPermaLink="false">http://jeredsutton.com/?p=147#comment-84</guid>
		<description><![CDATA[[...] &#8592; Previous Next &#8594; [...]]]></description>
		<content:encoded><![CDATA[<p>[...] &larr; Previous Next &rarr; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bash Best(ish) practices part 3 by Bash Best(ish) practices part 2 &#124; Food for Thought</title>
		<link>http://jeredsutton.com/2013/03/24/bash-bestish-practices-part-3/#comment-83</link>
		<dc:creator><![CDATA[Bash Best(ish) practices part 2 &#124; Food for Thought]]></dc:creator>
		<pubDate>Sat, 30 Mar 2013 02:18:44 +0000</pubDate>
		<guid isPermaLink="false">http://jeredsutton.com/?p=149#comment-83</guid>
		<description><![CDATA[[...] &#8592; Previous Next &#8594; [...]]]></description>
		<content:encoded><![CDATA[<p>[...] &larr; Previous Next &rarr; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bash Best(ish) practices part 2 by Bash Best(ish) practices part 1 &#124; Food for Thought</title>
		<link>http://jeredsutton.com/2013/03/17/bash-bestish-practices-part-2/#comment-82</link>
		<dc:creator><![CDATA[Bash Best(ish) practices part 1 &#124; Food for Thought]]></dc:creator>
		<pubDate>Sat, 30 Mar 2013 02:17:35 +0000</pubDate>
		<guid isPermaLink="false">http://jeredsutton.com/?p=148#comment-82</guid>
		<description><![CDATA[[...] &#8592; Previous Next &#8594; [...]]]></description>
		<content:encoded><![CDATA[<p>[...] &larr; Previous Next &rarr; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Perl Logging Subroutine by Ahmer</title>
		<link>http://jeredsutton.com/2010/07/18/simple-perl-logging-subroutine/#comment-72</link>
		<dc:creator><![CDATA[Ahmer]]></dc:creator>
		<pubDate>Tue, 11 Dec 2012 16:26:20 +0000</pubDate>
		<guid isPermaLink="false">http://jeredsutton.com/?p=82#comment-72</guid>
		<description><![CDATA[Really good idea.]]></description>
		<content:encoded><![CDATA[<p>Really good idea.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
