<?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: How to change a file&#8217;s modification date and time</title>
	<atom:link href="http://techpulp.com/2009/01/how-to-change-a-files-modification-date-and-time/feed/" rel="self" type="application/rss+xml" />
	<link>http://techpulp.com/2009/01/how-to-change-a-files-modification-date-and-time/</link>
	<description>The pulp of technology</description>
	<pubDate>Thu, 09 Sep 2010 13:54:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mark</title>
		<link>http://techpulp.com/2009/01/how-to-change-a-files-modification-date-and-time/comment-page-1/#comment-475</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Fri, 04 Sep 2009 08:42:50 +0000</pubDate>
		<guid isPermaLink="false">http://techpulp.com/?p=510#comment-475</guid>
		<description>That is straight forward. Just move to the directory which contains all jpg files and then use *.jpg instead of face.jpg

If you want to search recursively for all JPG files in a directory and this operation, you can try following examples:
&lt;code&gt;
find . -iname \*.jpg &#124; xargs touch
find . -iname \*.jpg &#124; xargs touch -d '1 Jan 2000 00:01'
find . -iname \*.jpg &#124; xargs touch -d '31 Dec 2001'
find . -iname \*.jpg &#124; xargs touch -d '11:59:59'
&lt;/code&gt;

Hope this helps you!</description>
		<content:encoded><![CDATA[<p>That is straight forward. Just move to the directory which contains all jpg files and then use *.jpg instead of face.jpg</p>
<p>If you want to search recursively for all JPG files in a directory and this operation, you can try following examples:<br />
<code><br />
find . -iname \*.jpg | xargs touch<br />
find . -iname \*.jpg | xargs touch -d '1 Jan 2000 00:01'<br />
find . -iname \*.jpg | xargs touch -d '31 Dec 2001'<br />
find . -iname \*.jpg | xargs touch -d '11:59:59'<br />
</code></p>
<p>Hope this helps you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jg</title>
		<link>http://techpulp.com/2009/01/how-to-change-a-files-modification-date-and-time/comment-page-1/#comment-474</link>
		<dc:creator>jg</dc:creator>
		<pubDate>Sat, 29 Aug 2009 00:12:34 +0000</pubDate>
		<guid isPermaLink="false">http://techpulp.com/?p=510#comment-474</guid>
		<description>hi..do you know if theres a script i can run that can do this on a folder full of jpg's?</description>
		<content:encoded><![CDATA[<p>hi..do you know if theres a script i can run that can do this on a folder full of jpg&#8217;s?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://techpulp.com/2009/01/how-to-change-a-files-modification-date-and-time/comment-page-1/#comment-140</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Mon, 02 Feb 2009 03:29:14 +0000</pubDate>
		<guid isPermaLink="false">http://techpulp.com/?p=510#comment-140</guid>
		<description>Linux doesn't store the time stamp for file creation. So you can't get it from Linux.

Alternately if you are the one who is creating the file using a script or something, you can store the time stamp and file name in a separate file.</description>
		<content:encoded><![CDATA[<p>Linux doesn&#8217;t store the time stamp for file creation. So you can&#8217;t get it from Linux.</p>
<p>Alternately if you are the one who is creating the file using a script or something, you can store the time stamp and file name in a separate file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://techpulp.com/2009/01/how-to-change-a-files-modification-date-and-time/comment-page-1/#comment-139</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sun, 01 Feb 2009 12:30:22 +0000</pubDate>
		<guid isPermaLink="false">http://techpulp.com/?p=510#comment-139</guid>
		<description>Nice article. Is there a way to change the file creation date and time?</description>
		<content:encoded><![CDATA[<p>Nice article. Is there a way to change the file creation date and time?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
