<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux Explore &#187; heaad</title>
	<atom:link href="https://blog.linuxexplore.com/tag/heaad/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.linuxexplore.com</link>
	<description>Exploring Linux</description>
	<lastBuildDate>Mon, 07 Apr 2014 00:30:50 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.38</generator>
	<item>
		<title>Finding the biggest files in Linux</title>
		<link>https://blog.linuxexplore.com/2012/07/28/finding-the-biggest-files-in-linux/</link>
		<comments>https://blog.linuxexplore.com/2012/07/28/finding-the-biggest-files-in-linux/#comments</comments>
		<pubDate>Fri, 27 Jul 2012 19:04:53 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Explore Tips & Tricks]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[biggest file]]></category>
		<category><![CDATA[exec]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[heaad]]></category>
		<category><![CDATA[intowire]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ls]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[sort]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://linuxexplore.wordpress.com/?p=489</guid>
		<description><![CDATA[A common problem with computers is when you have a number of large files (such as audio/video clips) that you may want to get rid of. You can find the biggest files in the current directory with: ( only in current directory ) ls -lSrh (the r causes the large files to be listed at&#8230;]]></description>
				<content:encoded><![CDATA[<p>A common problem with computers is when you have a number of large files (such as audio/video clips) that you may want to get rid of. You can find the biggest files in the current directory with: ( only in current directory )</p>
<blockquote><p>ls -lSrh (the r causes the large files to be listed at the end, the h gives human readable output (MB and such))</p></blockquote>
<p>You could also search for the biggest MP3/MPEGs:</p>
<blockquote><p>ls -lSrh *.mp*</p></blockquote>
<p>You can also look for the largest directories with:</p>
<blockquote><p>du -kx | egrep -v &#8220;./.+/&#8221; | sort -n</p></blockquote>
<p>You can find the biggest files in your home directory, ( in the whole directory structure ).</p>
<blockquote><p>find ~ -type f -exec ls -s {} ; | sort -n</p></blockquote>
<p>List only the top 10 biggest file.</p>
<blockquote><p>find . -type f -exec ls -s {} ; | sort -nr | head -10</p></blockquote>
<p><a href="http://www.intowire.com/iWiRE/blog/view/7597/finding-the-biggest-files#.UBLkFcOKybw.wordpress" target="_blank">Read full story</a></p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2012/07/28/finding-the-biggest-files-in-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
