<?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: Command line disk usage utilities df and du</title>
	<atom:link href="http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/feed/" rel="self" type="application/rss+xml" />
	<link>http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/</link>
	<description>News, tips, software, reviews, and more for Mac OS X, iPhone, iPad</description>
	<lastBuildDate>Sun, 19 May 2013 16:30:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Question about Storage!</title>
		<link>http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/#comment-406471</link>
		<dc:creator>Question about Storage!</dc:creator>
		<pubDate>Thu, 12 Jul 2012 14:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/#comment-406471</guid>
		<description>[...] is the same as TopGear says, but maybe quicker: Command line disk usage utilities df and du         Support requests by PM will remain unanswered, sorry. &#63743; GA-Z68X-UD3H-B3 i7-2600K; [...]</description>
		<content:encoded><![CDATA[<p>[...] is the same as TopGear says, but maybe quicker: Command line disk usage utilities df and du         Support requests by PM will remain unanswered, sorry. &#63743; GA-Z68X-UD3H-B3 i7-2600K; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kurtis mcdonald</title>
		<link>http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/#comment-182315</link>
		<dc:creator>kurtis mcdonald</dc:creator>
		<pubDate>Tue, 15 Mar 2011 06:07:39 +0000</pubDate>
		<guid isPermaLink="false">http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/#comment-182315</guid>
		<description>i need to clear my mac&#039;s info like games and the sort, but when I hit du, all the game info and whatnots also come out. How do I delete all that info PERMANANTLY?</description>
		<content:encoded><![CDATA[<p>i need to clear my mac&#8217;s info like games and the sort, but when I hit du, all the game info and whatnots also come out. How do I delete all that info PERMANANTLY?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/#comment-93858</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Wed, 29 Jul 2009 22:43:43 +0000</pubDate>
		<guid isPermaLink="false">http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/#comment-93858</guid>
		<description>You can also use ls -Sr</description>
		<content:encoded><![CDATA[<p>You can also use ls -Sr</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Khurt Williams</title>
		<link>http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/#comment-3667</link>
		<dc:creator>Khurt Williams</dc:creator>
		<pubDate>Wed, 21 Mar 2007 02:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/#comment-3667</guid>
		<description>Try

du -ck * &#124; sort -rn &#124; head -11</description>
		<content:encoded><![CDATA[<p>Try</p>
<p>du -ck * | sort -rn | head -11</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darrell</title>
		<link>http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/#comment-3657</link>
		<dc:creator>Darrell</dc:creator>
		<pubDate>Tue, 20 Mar 2007 21:00:08 +0000</pubDate>
		<guid isPermaLink="false">http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/#comment-3657</guid>
		<description>I never knew about du, good info to know. And thanks lar3ry for the extended info on du</description>
		<content:encoded><![CDATA[<p>I never knew about du, good info to know. And thanks lar3ry for the extended info on du</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lar3ry</title>
		<link>http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/#comment-3637</link>
		<dc:creator>lar3ry</dc:creator>
		<pubDate>Tue, 20 Mar 2007 14:52:48 +0000</pubDate>
		<guid isPermaLink="false">http://osxdaily.com/2007/03/20/command-line-disk-usage-utilities-df-and-du/#comment-3637</guid>
		<description>The DU utility is good for finding out where your disk space is being wasted.  Use something like:

du -k * &#124; sort -n

This will show the usage (in 1-K units) of all the files/directories in the current directory, which will be piped to the &quot;sort&quot; utility, using a numeric comparison on the first field (the size).  Thus, your largest files/directories will be the last ones listed.

Note that while the -h option is useful for seeing &quot;human readable&quot; sizes, sort isn&#039;t smart enough to realize that &quot;256M&quot; is larger than 816K.  [smile]</description>
		<content:encoded><![CDATA[<p>The DU utility is good for finding out where your disk space is being wasted.  Use something like:</p>
<p>du -k * | sort -n</p>
<p>This will show the usage (in 1-K units) of all the files/directories in the current directory, which will be piped to the &#8220;sort&#8221; utility, using a numeric comparison on the first field (the size).  Thus, your largest files/directories will be the last ones listed.</p>
<p>Note that while the -h option is useful for seeing &#8220;human readable&#8221; sizes, sort isn&#8217;t smart enough to realize that &#8220;256M&#8221; is larger than 816K.  [smile]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (User agent is rejected)
Database Caching 1/3 queries in 0.004 seconds using disk: basic
Object Caching 244/245 objects using disk: basic
Content Delivery Network via cdn.osxdaily.com

Served from: osxdaily.com @ 2013-05-19 10:53:49 -->