<?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>TrevorWendt.com</title>
	<atom:link href="http://www.trevorwendt.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.trevorwendt.com</link>
	<description>Just another WordPress weblog (yeah but this one&#039;s awesome!)</description>
	<lastBuildDate>Wed, 08 Sep 2010 22:36:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Disk Usage/Size</title>
		<link>http://www.trevorwendt.com/2010/09/disk-usagesize/</link>
		<comments>http://www.trevorwendt.com/2010/09/disk-usagesize/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 22:36:03 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.trevorwendt.com/?p=25</guid>
		<description><![CDATA[All files/folders with sizes; Total size at bottom du -h &#60;/path/to/directory&#62; One line, shows top level folder size including sub-folders/files. du -hs &#60;/path/to/directory&#62; Total folder/file size recursive for multiple folders du -sch &#60;/path/to/directory&#62; &#60;/path/to/directory&#62; &#60;/path/to/directory&#62; Show directory tree structure from directory down with count tree -sd &#60;/path/to/directory&#62;]]></description>
			<content:encoded><![CDATA[<p>All files/folders with sizes; Total size at bottom</p>
<pre class="brush:bash/shell">du -h &lt;/path/to/directory&gt;</pre>
<p>One line, shows top level folder size including sub-folders/files.</p>
<pre class="brush:bash/shell">du -hs &lt;/path/to/directory&gt;</pre>
<p>Total folder/file size recursive for multiple folders</p>
<pre class="brush:bash/shell">du -sch &lt;/path/to/directory&gt; &lt;/path/to/directory&gt; &lt;/path/to/directory&gt;</pre>
<p>Show directory tree structure from directory down with count</p>
<pre class="brush:bash/shell">tree -sd &lt;/path/to/directory&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.trevorwendt.com/2010/09/disk-usagesize/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find large files in Linux</title>
		<link>http://www.trevorwendt.com/2010/09/find-large-files-in-linux/</link>
		<comments>http://www.trevorwendt.com/2010/09/find-large-files-in-linux/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 22:33:08 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.trevorwendt.com/?p=19</guid>
		<description><![CDATA[My favorite one-liner to do this find / -type f -size +10M -exec ls -lh {} \; &#124; awk '{ print $9 ": " $5 }' From the Linux Man page for &#8216;find&#8217;, size can be set to the following: ‘b’    for 512-byte blocks (this is the default if no suffix is used) ‘c’    for [...]]]></description>
			<content:encoded><![CDATA[<p>My favorite one-liner to do this</p>
<pre class="brush:bash/shell">find / -type f -size +10M -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'</pre>
<p>From the Linux Man page for &#8216;find&#8217;, size can be set to the following:</p>
<ul>
<li>‘b’    for 512-byte blocks (this is the default if no suffix is used)</li>
<li>‘c’    for bytes</li>
<li>‘w’    for two-byte words</li>
<li>‘k’    for Kilobytes (units of 1024 bytes)</li>
<li>‘M’    for Megabytes (units of 1048576 bytes)</li>
<li>‘G’    for Gigabytes (units of 1073741824 bytes)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.trevorwendt.com/2010/09/find-large-files-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Command Line Sendmail Test</title>
		<link>http://www.trevorwendt.com/2010/04/simple-command-line-sendmail-test/</link>
		<comments>http://www.trevorwendt.com/2010/04/simple-command-line-sendmail-test/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 02:26:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.trevorwendt.com/?p=13</guid>
		<description><![CDATA[This is one of those commands I rarely use but can never seem to find it or remember it when I need it so, here it is for easy reference. A simple, quick sendmail example to test from a command line. Replace you@yourdomain.com to your actual email address of course. Subject only, no body message: [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of those commands I rarely use but can never seem to find it or remember it when I need it so, here it is for easy reference. A simple, quick sendmail example to test from a command line. Replace you@yourdomain.com to your actual email address of course.</p>
<p>Subject only, no body message:<br />
<code>$mail -s "Hello world" you@yourdomain.com</code></p>
<p>Body message with Subject:<br />
<code>echo "This is the body of the mail message." | mail -s "Hello world" you@yourdomain.com</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.trevorwendt.com/2010/04/simple-command-line-sendmail-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

