<?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>DaveTech &#187; Perl</title>
	<atom:link href="http://www.visualfuture.com/davetech/category/perl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.visualfuture.com/davetech</link>
	<description>If technology was easy and always worked right the first time, you wouldn't be reading this.</description>
	<lastBuildDate>Wed, 19 Aug 2009 14:35:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Build a list of Files</title>
		<link>http://www.visualfuture.com/davetech/2005/12/03/build-a-list-of-files/</link>
		<comments>http://www.visualfuture.com/davetech/2005/12/03/build-a-list-of-files/#comments</comments>
		<pubDate>Sun, 04 Dec 2005 05:10:34 +0000</pubDate>
		<dc:creator>David Burke</dc:creator>
				<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://www.visualfuture.com/davetech/?p=2</guid>
		<description><![CDATA[Snippet to build a list of files in perl]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick snippet of code to build a list of files from a folder using Perl:</p>
<pre>my $ext = '_plog.txt';
opendir (DIR, ".") || die "Can't open directory: $! n";
my @flist = grep (/$ext$/, readdir (DIR));
closedir (DIR);</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.visualfuture.com/davetech/2005/12/03/build-a-list-of-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
