<?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/"
		>
<channel>
	<title>Comments on: cli oneliner &#8211; sort top 10 directories</title>
	<atom:link href="http://kernelreloaded.blog385.com/index.php/archives/cli-oneliner-sort-top-10-directories/feed/" rel="self" type="application/rss+xml" />
	<link>http://kernelreloaded.blog385.com/index.php/archives/cli-oneliner-sort-top-10-directories/</link>
	<description>linux, blog, anime, spirituality, windsurf, wireless</description>
	<lastBuildDate>Tue, 18 Jun 2013 08:33:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Igor Pozgaj</title>
		<link>http://kernelreloaded.blog385.com/index.php/archives/cli-oneliner-sort-top-10-directories/comment-page-1/#comment-11760</link>
		<dc:creator>Igor Pozgaj</dc:creator>
		<pubDate>Fri, 07 Sep 2012 08:32:16 +0000</pubDate>
		<guid isPermaLink="false">http://kernelreloaded.blog385.com/?p=1844#comment-11760</guid>
		<description><![CDATA[The second command in the pipeline (excluding .. with grep) is superfluous as ls -A won&#039;t include . and .. in files/directories listing (read the manpage).]]></description>
		<content:encoded><![CDATA[<p>The second command in the pipeline (excluding .. with grep) is superfluous as ls -A won&#8217;t include . and .. in files/directories listing (read the manpage).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: foobar</title>
		<link>http://kernelreloaded.blog385.com/index.php/archives/cli-oneliner-sort-top-10-directories/comment-page-1/#comment-11663</link>
		<dc:creator>foobar</dc:creator>
		<pubDate>Sun, 26 Aug 2012 02:20:52 +0000</pubDate>
		<guid isPermaLink="false">http://kernelreloaded.blog385.com/?p=1844#comment-11663</guid>
		<description><![CDATA[New versions of du and sort have &#039;human&#039; so now all you need is: 

$ du -hxs ./* &#124; sort -hr]]></description>
		<content:encoded><![CDATA[<p>New versions of du and sort have &#8216;human&#8217; so now all you need is: </p>
<p>$ du -hxs ./* | sort -hr</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://kernelreloaded.blog385.com/index.php/archives/cli-oneliner-sort-top-10-directories/comment-page-1/#comment-11636</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Wed, 25 Jul 2012 02:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://kernelreloaded.blog385.com/?p=1844#comment-11636</guid>
		<description><![CDATA[You can shorten that a bit on systems where sort supports &#039;-h&#039;

ls -A &#124; grep -v -e &#039;^\.\.$&#039; &#124;xargs -i du -hs {} &#124;sort -hr &#124;head -11]]></description>
		<content:encoded><![CDATA[<p>You can shorten that a bit on systems where sort supports &#8216;-h&#8217;</p>
<p>ls -A | grep -v -e &#8216;^\.\.$&#8217; |xargs -i du -hs {} |sort -hr |head -11</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tobias Florek</title>
		<link>http://kernelreloaded.blog385.com/index.php/archives/cli-oneliner-sort-top-10-directories/comment-page-1/#comment-11635</link>
		<dc:creator>Tobias Florek</dc:creator>
		<pubDate>Tue, 24 Jul 2012 22:28:57 +0000</pubDate>
		<guid isPermaLink="false">http://kernelreloaded.blog385.com/?p=1844#comment-11635</guid>
		<description><![CDATA[what about

du --max-depth 1 -h .&#124;sort -rh&#124;head -12

it should perform quite better...]]></description>
		<content:encoded><![CDATA[<p>what about</p>
<p>du &#8211;max-depth 1 -h .|sort -rh|head -12</p>
<p>it should perform quite better&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
