<?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>AlferSoft Blog &#187; used</title>
	<atom:link href="http://www.alfersoft.com.ar/blog/tag/used/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alfersoft.com.ar/blog</link>
	<description>Explaining this blog in a few words since 1999</description>
	<lastBuildDate>Wed, 01 Feb 2012 22:36:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to calculate the space used by files in Linux?</title>
		<link>http://www.alfersoft.com.ar/blog/2010/02/19/how-to-calculate-the-space-used-by-files-in-linux/</link>
		<comments>http://www.alfersoft.com.ar/blog/2010/02/19/how-to-calculate-the-space-used-by-files-in-linux/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 18:09:26 +0000</pubDate>
		<dc:creator>fvicente</dc:creator>
				<category><![CDATA[Linux FAQ]]></category>
		<category><![CDATA[awk]]></category>
		<category><![CDATA[calculate]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[occupied]]></category>
		<category><![CDATA[pattern]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[sum]]></category>
		<category><![CDATA[used]]></category>

		<guid isPermaLink="false">http://www.alfersoft.com.ar/blog/?p=131</guid>
		<description><![CDATA[Suppose that you want to calculate the space used by all the png files in current directory and all its subdirectories. From a terminal type: find . -name '*.png' -exec du -ab {} \; &#124; awk '{total+=$0}END{print total}' Image source]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="FAQ" src="http://www.alfersoft.com.ar/files/question.png" alt="" width="48" height="48" /></p>
<p>Suppose that you want to calculate the space used by all the png files in current directory and all its subdirectories. From a terminal type:<br />
<code><br />
find . -name '*.png' -exec du -ab {} \; | awk '{total+=$0}END{print total}'<br />
</code></p>
<h6><a title="Lock" href="http://commons.wikimedia.org/wiki/File:Gnome-dialog-question.svg" target="_blank">Image source</a></h6>
]]></content:encoded>
			<wfw:commentRss>http://www.alfersoft.com.ar/blog/2010/02/19/how-to-calculate-the-space-used-by-files-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

