<?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>x + 3 &#187; find</title>
	<atom:link href="http://xplus3.net/tag/find/feed/" rel="self" type="application/rss+xml" />
	<link>http://xplus3.net</link>
	<description></description>
	<lastBuildDate>Fri, 19 Aug 2011 01:05:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Find Files by Size</title>
		<link>http://xplus3.net/2009/04/01/find-files-by-size/</link>
		<comments>http://xplus3.net/2009/04/01/find-files-by-size/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 20:28:03 +0000</pubDate>
		<dc:creator>Jonathan Brinley</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Libraries]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://xplus3.net/?p=202</guid>
		<description><![CDATA[Find all TIFFs in a directory smaller than 90 MB: $ find /dir/to/search -name *.tif -size -90M -exec ls -lh {} \; Get just the size and path and write to a file: $ find /dir/to/search -name *.tif -size -90M -exec ls -lh {} \; &#124; awk '{print $5 , $8}' &#62; output.txt Useful for finding images that might have &#8230; <a href="http://xplus3.net/2009/04/01/find-files-by-size/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Find all TIFFs in a directory smaller than 90 MB:</p>
<pre>$ find /dir/to/search -name *.tif -size -90M -exec ls -lh {} \;</pre>
<p>Get just the size and path and write to a file:</p>
<pre>$ find /dir/to/search -name *.tif -size -90M -exec ls -lh {} \; | awk '{print $5 , $8}' &gt; output.txt</pre>
<p>Useful for finding images that might have been scanned at the wrong resolution/bit depth/etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://xplus3.net/2009/04/01/find-files-by-size/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

