<?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: Find large files in multiple directories</title>
	<atom:link href="http://www.utahsysadmin.com/2008/06/15/find-large-files-in-multiple-directories/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.utahsysadmin.com/2008/06/15/find-large-files-in-multiple-directories/</link>
	<description>Ramblings of a Utah System Administrator</description>
	<lastBuildDate>Thu, 26 Aug 2010 16:31:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kevin Pendleton</title>
		<link>http://www.utahsysadmin.com/2008/06/15/find-large-files-in-multiple-directories/comment-page-1/#comment-275</link>
		<dc:creator>Kevin Pendleton</dc:creator>
		<pubDate>Tue, 19 Jan 2010 20:27:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.utahsysadmin.com/?p=104#comment-275</guid>
		<description>And for files with spaces in the middle of names on solaris (top 20 files):

&lt;code&gt;find . -type f &#124; while read filename; do du -sk &quot;$filename&quot;; done &#124; sort -n &#124; tail -20&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>And for files with spaces in the middle of names on solaris (top 20 files):</p>
<p><code>find . -type f | while read filename; do du -sk "$filename"; done | sort -n | tail -20</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edward</title>
		<link>http://www.utahsysadmin.com/2008/06/15/find-large-files-in-multiple-directories/comment-page-1/#comment-104</link>
		<dc:creator>Edward</dc:creator>
		<pubDate>Tue, 24 Jun 2008 20:49:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.utahsysadmin.com/?p=104#comment-104</guid>
		<description>Xargs will solve the &quot;Argument list to long&quot; problem, info is here they  can explain it better then I can.  http://en.wikipedia.org/wiki/Xargs</description>
		<content:encoded><![CDATA[<p>Xargs will solve the &#8220;Argument list to long&#8221; problem, info is here they  can explain it better then I can.  <a href="http://en.wikipedia.org/wiki/Xargs" rel="nofollow">http://en.wikipedia.org/wiki/Xargs</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon Checketts</title>
		<link>http://www.utahsysadmin.com/2008/06/15/find-large-files-in-multiple-directories/comment-page-1/#comment-101</link>
		<dc:creator>Brandon Checketts</dc:creator>
		<pubDate>Mon, 16 Jun 2008 17:40:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.utahsysadmin.com/?p=104#comment-101</guid>
		<description>This takes a while to run, but try 
&lt;blockquote&gt;du -mxS / &#124; sort -n &#124; tail -n 40&lt;/blockquote&gt;

I can&#039;t remember where I picked that up, or what each of the options are, but it gives your the 40 largest directories on the system.</description>
		<content:encoded><![CDATA[<p>This takes a while to run, but try </p>
<blockquote><p>du -mxS / | sort -n | tail -n 40</p></blockquote>
<p>I can&#8217;t remember where I picked that up, or what each of the options are, but it gives your the 40 largest directories on the system.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
