<?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>Schadenfreude &#187; find</title>
	<atom:link href="http://www.ralree.com/tag/find/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ralree.com</link>
	<description>Malicious enjoyment derived from observing someone else's misfortune</description>
	<lastBuildDate>Thu, 09 Feb 2012 01:49:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Setting EXIF dates with a loop</title>
		<link>http://www.ralree.com/2007/09/18/setting-exif-dates-with-a-loop/</link>
		<comments>http://www.ralree.com/2007/09/18/setting-exif-dates-with-a-loop/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 00:11:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[exif]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2007/10/13/setting-exif-dates-with-a-loop</guid>
		<description><![CDATA[Magic EXIF recursive tagging! Have you ever had your files all nicely nested in directories, but needed to change their EXIF dates? Here&#8217;s what I used today to do it: # Structure like this: 1997/08/Picture.Whatever Maybe Some Spaces.jpg # Delete the EXIF tags (DONT DO THIS UNLESS YOU KNOW WHAT YOU'RE DOING!) find . -mindepth 3 -exec jhead -de "{}" \; # Make Fresh EXIF tags find . -mindepth 3 -exec jhead -mkexif "{}" \; # Set the dates according [...]]]></description>
			<content:encoded><![CDATA[<h2>Magic EXIF recursive tagging!</h2>
<p>Have you ever had your files all nicely nested in directories, but needed to change their EXIF dates?  Here&#8217;s what I used today to do it:</p>
<pre><code>
# Structure like this: 1997/08/Picture.Whatever Maybe Some Spaces.jpg

# Delete the EXIF tags (DONT DO THIS UNLESS YOU KNOW WHAT YOU'RE DOING!)
find . -mindepth 3 -exec jhead -de "{}" \;

# Make Fresh EXIF tags
find . -mindepth 3 -exec jhead -mkexif "{}" \;

# Set the dates according to the Year and Month information in the filenames
find . -mindepth 3 | perl -ne '@a = split(/\//, $_); chomp($_); print `jhead -da$a[1]:$a[2]:01-2007:09:17 "$_"`, "\n"'
</code></pre>
<p>This worked wonderfully.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2007/09/18/setting-exif-dates-with-a-loop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

