<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Comments on snippet: 'using find to list old files based on date'</title>
<link>http://snipplr.com</link>
<description>Snipplr comments feed'</description>
<language>en-us</language>
<pubDate>Fri, 09 Jan 2009 19:37:30 GMT</pubDate>
<item>
<title>jhenry said on 6/12/07</title>
<link>http://snipplr.com/view/2851/using-find-to-list-old-files-based-on-date/</link>
<description><![CDATA[ <p>or, to remove all jpg's in the current directory older that two weeks:</p>

<p>$ find . -mtime +14 -type f -name "*.jpg" -exec rm -f {} \;</p>

<p>careful!</p>
 ]]></description>
<pubDate>Tue, 12 Jun 2007 12:25:50 GMT</pubDate>
<guid>http://snipplr.com/view/2851/using-find-to-list-old-files-based-on-date/</guid>
</item>
</channel>
</rss>