<?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>Blog::Log &#187; command</title>
	<atom:link href="http://www.stpe.se/tag/command/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stpe.se</link>
	<description>Not a blog, more a log.</description>
	<lastBuildDate>Wed, 02 Jun 2010 13:01:58 +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>Count files recursively in a directory using Linux</title>
		<link>http://www.stpe.se/2008/12/count-files-recursively-in-a-directory-using-linux/</link>
		<comments>http://www.stpe.se/2008/12/count-files-recursively-in-a-directory-using-linux/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 07:53:57 +0000</pubDate>
		<dc:creator>stefan</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[command]]></category>

		<guid isPermaLink="false">http://www.stpe.se/?p=68</guid>
		<description><![CDATA[Using Linux, to get the number of files in the current directory, use: ls -1 &#124; wc -l To count the number of files recursively in the current and all directories below it, use: find . -type f &#124; wc -l]]></description>
			<content:encoded><![CDATA[<p>Using Linux, to get the number of files in the current directory, use:</p>
<p><code>ls -1 | wc -l</code></p>
<p>To count the number of files recursively in the current and all directories below it, use:</p>
<p><code>find . -type f | wc -l</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stpe.se/2008/12/count-files-recursively-in-a-directory-using-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
