<?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: How To Find Large Files and Directories in Unix</title>
	<atom:link href="http://www.unixtutorial.org/2008/03/find-large-files-and-directories/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.unixtutorial.org/2008/03/find-large-files-and-directories/</link>
	<description>Learn UNIX</description>
	<lastBuildDate>Sun, 29 Aug 2010 16:01:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: bdk</title>
		<link>http://www.unixtutorial.org/2008/03/find-large-files-and-directories/comment-page-1/#comment-6725</link>
		<dc:creator>bdk</dc:creator>
		<pubDate>Tue, 20 Oct 2009 23:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/03/find-large-files-and-directories/#comment-6725</guid>
		<description>Find the sizes of only directories sorted by size:

find . -type d -print0 &#124; xargs -0 -n1 du -sk &#124; sort -rn &gt; dir-sizes.txt&amp;

If you just want the 50 or so largest add &#039;&#124; head -n50&#039; before piping it to the output file. Sizes are in KB for ez sort and reading.</description>
		<content:encoded><![CDATA[<p>Find the sizes of only directories sorted by size:</p>
<p>find . -type d -print0 | xargs -0 -n1 du -sk | sort -rn &gt; dir-sizes.txt&amp;</p>
<p>If you just want the 50 or so largest add '| head -n50&#8242; before piping it to the output file. Sizes are in KB for ez sort and reading.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rubo77</title>
		<link>http://www.unixtutorial.org/2008/03/find-large-files-and-directories/comment-page-1/#comment-5374</link>
		<dc:creator>Rubo77</dc:creator>
		<pubDate>Sat, 04 Jul 2009 15:56:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/03/find-large-files-and-directories/#comment-5374</guid>
		<description>thx,
i use this to find large files on my webserver

want to see the sizes directly and dont want to see files in the folder /download/, so i use:

find /var/www/ -type f -name &quot;*&quot; -size +100M -exec du -h &#039;{}&#039; \;&#124;grep -v /download/</description>
		<content:encoded><![CDATA[<p>thx,<br />
i use this to find large files on my webserver</p>
<p>want to see the sizes directly and dont want to see files in the folder /download/, so i use:</p>
<p>find /var/www/ -type f -name "*" -size +100M -exec du -h '{}' \;|grep -v /download/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gleb Reys</title>
		<link>http://www.unixtutorial.org/2008/03/find-large-files-and-directories/comment-page-1/#comment-4043</link>
		<dc:creator>Gleb Reys</dc:creator>
		<pubDate>Sat, 09 May 2009 00:55:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/03/find-large-files-and-directories/#comment-4043</guid>
		<description>Andrei, du -sk &lt;DIRNAME&gt; does exactly that, but you need to then sort the output so that it finds the largest.</description>
		<content:encoded><![CDATA[<p>Andrei, du -sk <dirname> does exactly that, but you need to then sort the output so that it finds the largest.</dirname></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei</title>
		<link>http://www.unixtutorial.org/2008/03/find-large-files-and-directories/comment-page-1/#comment-3461</link>
		<dc:creator>Andrei</dc:creator>
		<pubDate>Wed, 22 Apr 2009 10:06:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/03/find-large-files-and-directories/#comment-3461</guid>
		<description>Please tell me how can i find the largest directory through a bash script who will sum the file in the folder(only the final directories). Thank you</description>
		<content:encoded><![CDATA[<p>Please tell me how can i find the largest directory through a bash script who will sum the file in the folder(only the final directories). Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gleb Reys</title>
		<link>http://www.unixtutorial.org/2008/03/find-large-files-and-directories/comment-page-1/#comment-2490</link>
		<dc:creator>Gleb Reys</dc:creator>
		<pubDate>Sun, 22 Mar 2009 17:35:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/03/find-large-files-and-directories/#comment-2490</guid>
		<description>Hi Ben,
Glad to have helped!

Gleb</description>
		<content:encoded><![CDATA[<p>Hi Ben,<br />
Glad to have helped!</p>
<p>Gleb</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Harris</title>
		<link>http://www.unixtutorial.org/2008/03/find-large-files-and-directories/comment-page-1/#comment-2475</link>
		<dc:creator>Ben Harris</dc:creator>
		<pubDate>Sat, 21 Mar 2009 22:13:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/03/find-large-files-and-directories/#comment-2475</guid>
		<description>Thanks very much. I couldn&#039;t remember what the du command was, and spent ages trying to find it again. Cheers :)</description>
		<content:encoded><![CDATA[<p>Thanks very much. I couldn't remember what the du command was, and spent ages trying to find it again. Cheers <img src='http://www.unixtutorial.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gleb Reys</title>
		<link>http://www.unixtutorial.org/2008/03/find-large-files-and-directories/comment-page-1/#comment-1233</link>
		<dc:creator>Gleb Reys</dc:creator>
		<pubDate>Sun, 16 Nov 2008 17:35:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/03/find-large-files-and-directories/#comment-1233</guid>
		<description>A pleasure to be of some help!</description>
		<content:encoded><![CDATA[<p>A pleasure to be of some help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klaudio Zic aka Claudio Antonio Valentin Solis</title>
		<link>http://www.unixtutorial.org/2008/03/find-large-files-and-directories/comment-page-1/#comment-1227</link>
		<dc:creator>Klaudio Zic aka Claudio Antonio Valentin Solis</dc:creator>
		<pubDate>Sun, 16 Nov 2008 09:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/03/find-large-files-and-directories/#comment-1227</guid>
		<description>Your tuition helped me on my EEEPC, a modest monster machine that just needed some extra UNIX scripts to perform fine!</description>
		<content:encoded><![CDATA[<p>Your tuition helped me on my EEEPC, a modest monster machine that just needed some extra UNIX scripts to perform fine!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.unixtutorial.org/2008/03/find-large-files-and-directories/comment-page-1/#comment-984</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Tue, 07 Oct 2008 01:52:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/03/find-large-files-and-directories/#comment-984</guid>
		<description>How do you search for a directory that could be in any other directory?
For example I want to find all &quot;backup&quot; directories but am not sure in which directories they all got saved.</description>
		<content:encoded><![CDATA[<p>How do you search for a directory that could be in any other directory?<br />
For example I want to find all "backup" directories but am not sure in which directories they all got saved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How To Syncronize Directories with Rsync &#124; UNIX Tutorial: Learn UNIX</title>
		<link>http://www.unixtutorial.org/2008/03/find-large-files-and-directories/comment-page-1/#comment-956</link>
		<dc:creator>How To Syncronize Directories with Rsync &#124; UNIX Tutorial: Learn UNIX</dc:creator>
		<pubDate>Thu, 02 Oct 2008 16:46:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/03/find-large-files-and-directories/#comment-956</guid>
		<description>[...] Finding large files and directories     Please share: These icons link to social bookmarking sites where readers can share and discover new web pages. [...]</description>
		<content:encoded><![CDATA[<p>[...] Finding large files and directories     Please share: These icons link to social bookmarking sites where readers can share and discover new web pages. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
