<?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>Pratthost Developer Zone &#187; Unix</title>
	<atom:link href="http://devzone.pratthost.com/category/unix/feed/" rel="self" type="application/rss+xml" />
	<link>http://devzone.pratthost.com</link>
	<description>A resource for web developers</description>
	<lastBuildDate>Tue, 29 Jun 2010 18:47:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Unix: Funny Comic</title>
		<link>http://devzone.pratthost.com/2008/10/03/unix-funny-comic/</link>
		<comments>http://devzone.pratthost.com/2008/10/03/unix-funny-comic/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 22:58:45 +0000</pubDate>
		<dc:creator>Josh Pratt</dc:creator>
				<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://devzone.pratthost.com/?p=93</guid>
		<description><![CDATA[If you are not familiar with Unix, you will definitely not understand this. I&#8217;d love to give credit to whoever sketched this one up &#8211; but I have no idea who did. Someone emailed this to me. It&#8217;s a good one!]]></description>
			<content:encoded><![CDATA[<p>If you are not familiar with Unix, you will definitely not understand this.  I&#8217;d love to give credit to whoever sketched this one up &#8211; but I have no idea who did.  Someone emailed this to me.  It&#8217;s a good one!</p>
<div style="width: 360px; margin: 0 auto"><img src="http://devzone.pratthost.com/wp-content/uploads/2008/10/sudo_comic.jpeg" alt="" title="Sudo Comic" width="360" height="299" class="aligncenter size-full wp-image-94" /></div>
]]></content:encoded>
			<wfw:commentRss>http://devzone.pratthost.com/2008/10/03/unix-funny-comic/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Unix: Find What You&#8217;ve Recently Edited</title>
		<link>http://devzone.pratthost.com/2008/10/02/unix-find-what-youve-recently-edited/</link>
		<comments>http://devzone.pratthost.com/2008/10/02/unix-find-what-youve-recently-edited/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 23:11:15 +0000</pubDate>
		<dc:creator>Josh Pratt</dc:creator>
				<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://devzone.pratthost.com/?p=91</guid>
		<description><![CDATA[Sometimes, I have found it extremely useful to search my computer for files that I have recently edited. Fortunately, unix/linux folk have the command line to use (there may be windows equivelants, I really don&#8217;t know though). Here are some easy and useful ways to search. So &#8211; open up the Terminal/Command line and have [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://devzone.pratthost.com/wp-content/uploads/2008/09/terminal_icon.jpg" alt="" title="Terminal Icon" width="90" height="90" class="alignleft size-medium wp-image-49" /></p>
<p>Sometimes, I have found it extremely useful to search my computer for files that I have recently edited.  Fortunately, unix/linux folk have the command line to use (there may be windows equivelants, I really don&#8217;t know though).  Here are some easy and useful ways to search.  So &#8211; open up the Terminal/Command line and have at it: (Note: the find command always searches recursively)</p>
<p><br style="clear: both" /><br />
<strong>Search for files you&#8217;ve edited within the last 7 days on your entire computer</strong><br />
<code>$ find / -mtime -7</code></p>
<p><strong>Search a specific folder for files you&#8217;ve edited in the last 60 minutes</strong><br />
<code>$ find ~/Sites/testsite -mmin -60</code></p>
<p><strong>Search for files in the current directory ending in .php that you&#8217;ve edited in the last day</strong><br />
<code>$ find . -name "*.php" -mtime -1</code></p>
<p><strong>Search for files you&#8217;ve edited more than 3 days ago but not longer than 5 days ago</strong><br />
<code>$ find . -mtime +3 -mtime -5</code></p>
]]></content:encoded>
			<wfw:commentRss>http://devzone.pratthost.com/2008/10/02/unix-find-what-youve-recently-edited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
