<?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 on: A bash loop, for pacman</title>
	<atom:link href="http://kmandla.wordpress.com/2011/04/01/a-bash-loop-for-pacman/feed/" rel="self" type="application/rss+xml" />
	<link>http://kmandla.wordpress.com/2011/04/01/a-bash-loop-for-pacman/</link>
	<description>K.Mandla's blog of Linux experiences</description>
	<lastBuildDate>Mon, 11 Feb 2013 18:19:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Ryan Doenges</title>
		<link>http://kmandla.wordpress.com/2011/04/01/a-bash-loop-for-pacman/#comment-48939</link>
		<dc:creator><![CDATA[Ryan Doenges]]></dc:creator>
		<pubDate>Sun, 17 Apr 2011 04:27:36 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2011/04/01/a-bash-loop-for-pacman/#comment-48939</guid>
		<description><![CDATA[the best choice there would be to say `pacman -Qsq` but if you are going to use cut, a quicker solution would be `awk {print $1}`]]></description>
		<content:encoded><![CDATA[<p>the best choice there would be to say `pacman -Qsq` but if you are going to use cut, a quicker solution would be `awk {print $1}`</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Buffalo Pete</title>
		<link>http://kmandla.wordpress.com/2011/04/01/a-bash-loop-for-pacman/#comment-48741</link>
		<dc:creator><![CDATA[Buffalo Pete]]></dc:creator>
		<pubDate>Sat, 02 Apr 2011 16:47:16 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2011/04/01/a-bash-loop-for-pacman/#comment-48741</guid>
		<description><![CDATA[Very nice, I&#039;ve wanted to do just this on occasion before. And nicely adaptable too; to install all packages containing string FOO:

$ for i in `pacman -Ss &#124; grep FOO &#124; cut -d&#039; &#039; -f-1` ; do pacman -S ${i} ; done]]></description>
		<content:encoded><![CDATA[<p>Very nice, I&#8217;ve wanted to do just this on occasion before. And nicely adaptable too; to install all packages containing string FOO:</p>
<p>$ for i in `pacman -Ss | grep FOO | cut -d&#8217; &#8216; -f-1` ; do pacman -S ${i} ; done</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kompromized</title>
		<link>http://kmandla.wordpress.com/2011/04/01/a-bash-loop-for-pacman/#comment-48736</link>
		<dc:creator><![CDATA[Kompromized]]></dc:creator>
		<pubDate>Fri, 01 Apr 2011 20:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2011/04/01/a-bash-loop-for-pacman/#comment-48736</guid>
		<description><![CDATA[Yes, get rid of as many of those unsigned Arch packages as you can...]]></description>
		<content:encoded><![CDATA[<p>Yes, get rid of as many of those unsigned Arch packages as you can&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anon</title>
		<link>http://kmandla.wordpress.com/2011/04/01/a-bash-loop-for-pacman/#comment-48733</link>
		<dc:creator><![CDATA[anon]]></dc:creator>
		<pubDate>Fri, 01 Apr 2011 20:04:08 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2011/04/01/a-bash-loop-for-pacman/#comment-48733</guid>
		<description><![CDATA[Was about to suggest the same thing as Garrett, they both do the same thing although plain old pacman should be a bit faster (probably not noticable anyway).

To add to the above, another good one to run when cleaning up an arch box is:

pacman -Rcsn $(pacman -Qdtq)

Pretty much the equivalent of debian&#039;s:
apt-get autoremove &amp;&amp; apt-get autoclean]]></description>
		<content:encoded><![CDATA[<p>Was about to suggest the same thing as Garrett, they both do the same thing although plain old pacman should be a bit faster (probably not noticable anyway).</p>
<p>To add to the above, another good one to run when cleaning up an arch box is:</p>
<p>pacman -Rcsn $(pacman -Qdtq)</p>
<p>Pretty much the equivalent of debian&#8217;s:<br />
apt-get autoremove &amp;&amp; apt-get autoclean</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Garrett</title>
		<link>http://kmandla.wordpress.com/2011/04/01/a-bash-loop-for-pacman/#comment-48732</link>
		<dc:creator><![CDATA[Garrett]]></dc:creator>
		<pubDate>Fri, 01 Apr 2011 13:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2011/04/01/a-bash-loop-for-pacman/#comment-48732</guid>
		<description><![CDATA[What about... `pacman -Rcsn $(pacman -Qsq xf86)`? The q option gets rid of the version numbers.]]></description>
		<content:encoded><![CDATA[<p>What about&#8230; `pacman -Rcsn $(pacman -Qsq xf86)`? The q option gets rid of the version numbers.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
