<?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: Quickzi: Find files over a certain size on Linux</title>
	<atom:link href="http://www.foogazi.com/2008/03/29/quickzi-find-files-over-a-certain-size-on-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.foogazi.com/2008/03/29/quickzi-find-files-over-a-certain-size-on-linux/</link>
	<description>Linux Tips, Tricks, and Opinions</description>
	<lastBuildDate>Wed, 27 Jun 2012 07:49:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
	<item>
		<title>By: tim8552</title>
		<link>http://www.foogazi.com/2008/03/29/quickzi-find-files-over-a-certain-size-on-linux/comment-page-1/#comment-149111</link>
		<dc:creator>tim8552</dc:creator>
		<pubDate>Wed, 07 Sep 2011 08:51:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.foogazi.com/2008/03/29/quickzi-find-files-over-a-certain-size-on-linux/#comment-149111</guid>
		<description>find / \( -size 1k -and -size 2M \)

/ -root
\( and \) special character

-and and condition</description>
		<content:encoded><![CDATA[<p>find / \( -size 1k -and -size 2M \)</p>
<p>/ -root<br />
\( and \) special character</p>
<p>-and and condition</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GreenLantern</title>
		<link>http://www.foogazi.com/2008/03/29/quickzi-find-files-over-a-certain-size-on-linux/comment-page-1/#comment-6296</link>
		<dc:creator>GreenLantern</dc:creator>
		<pubDate>Sun, 30 Mar 2008 00:23:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.foogazi.com/2008/03/29/quickzi-find-files-over-a-certain-size-on-linux/#comment-6296</guid>
		<description>If you just need a quick method for finding files over 100M all you need is this:
# find /home/adam/ -size +100M

You can also look for files under 100M:
# find /home/adam/ -size -100M

Or files between 90M and 110M
# find /home/adam/ -size +80M -and -size -110M</description>
		<content:encoded><![CDATA[<p>If you just need a quick method for finding files over 100M all you need is this:<br />
# find /home/adam/ -size +100M</p>
<p>You can also look for files under 100M:<br />
# find /home/adam/ -size -100M</p>
<p>Or files between 90M and 110M<br />
# find /home/adam/ -size +80M -and -size -110M</p>
]]></content:encoded>
	</item>
</channel>
</rss>
