<?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>jaux.net &#187; Bash</title>
	<atom:link href="http://jaux.net/tag/bash/feed/" rel="self" type="application/rss+xml" />
	<link>http://jaux.net</link>
	<description>Discovering this wonderful world...</description>
	<lastBuildDate>Fri, 06 Jan 2012 07:49:47 +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></title>
		<link>http://jaux.net/2011/10/18/more-bash-tricks-more/</link>
		<comments>http://jaux.net/2011/10/18/more-bash-tricks-more/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 15:33:18 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=579</guid>
		<description><![CDATA[Tutorial: The best tips &#038; tricks for bash, explained More bash tricks, MORE!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.linuxtutorialblog.com/post/tutorial-the-best-tips-tricks-for-bash" title="Tutorial: The best tips &#038; tricks for bash, explained">Tutorial: The best tips &#038; tricks for bash, explained</a></p>
<p>More bash tricks, MORE!</p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2011/10/18/more-bash-tricks-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://jaux.net/2011/09/12/bash-vi-mode/</link>
		<comments>http://jaux.net/2011/09/12/bash-vi-mode/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 17:32:31 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=517</guid>
		<description><![CDATA[Working Productively in Bash&#8217;s Vi Command Line Editing Mode (with Cheat Sheet) There always is something new to learn!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.catonmat.net/blog/bash-vi-editing-mode-cheat-sheet/">Working Productively in Bash&#8217;s Vi Command Line Editing Mode (with Cheat Sheet)</a></p>
<p>There always is something new to learn!</p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2011/09/12/bash-vi-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://jaux.net/2011/09/11/bash-shortcuts-for-maximum-productivity/</link>
		<comments>http://jaux.net/2011/09/11/bash-shortcuts-for-maximum-productivity/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 08:56:44 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=503</guid>
		<description><![CDATA[Bash Shortcuts For Maximum Productivity Great post! I really don&#8217;t feel I know Bash at all when I first read it ;)]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.skorks.com/2009/09/bash-shortcuts-for-maximum-productivity/" title="Bash Shortcuts For Maximum Productivity" target="_blank">Bash Shortcuts For Maximum Productivity</a></p>
<p>Great post! I really don&#8217;t feel I know Bash at all when I first read it ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2011/09/11/bash-shortcuts-for-maximum-productivity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;&#8211;&#8221; (Double-hyphen) in Bash</title>
		<link>http://jaux.net/2009/11/24/double-hyphen-in-bash/</link>
		<comments>http://jaux.net/2009/11/24/double-hyphen-in-bash/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 19:09:13 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=335</guid>
		<description><![CDATA[In out the -- arguments to cat and less tells these utilities that no more options follow on the command line and not to consider leading hyphen (-) in the following list as indicating options. Thus -- allows you to &#8230; <a href="http://jaux.net/2009/11/24/double-hyphen-in-bash/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<pre class="brush: bash; title: ; notranslate">
$cat out
if [ $# -eq 0 ]
    then
        echo &quot;Usage: out [-v] filenames...&quot; 1&gt;&amp;2
        exit 1
fi
if [ &quot;$1&quot; = &quot;-v&quot; ]
    then
        shift
        less -- &quot;$@&quot;
    else
        cat -- &quot;$@&quot;
fi
</pre>
<blockquote>
<p>In out the <code>--</code> arguments to cat and less tells these utilities that no more options follow on the command line and not to consider leading hyphen (-) in the following list as indicating options. Thus <code>--</code> allows you to view a file with a name that starts with a hyphen&#8230; <code>--</code> argument works with all Linux utilities that use the getopts builtin&#8230; This argument is particularly useful when used in conjunction with rm to remove a file whose name starts with a hyphen (<code>rm -- -fname</code>)&#8230;</p>
</blockquote>
<p><em>A Practical Guide to Linux Commands, Editors and Shell Programming (p. 442)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2009/11/24/double-hyphen-in-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handle Filenames with Spaces Properly in Bash Loops</title>
		<link>http://jaux.net/2009/11/24/handle-filenames-with-spaces-properly-in-bash-loops/</link>
		<comments>http://jaux.net/2009/11/24/handle-filenames-with-spaces-properly-in-bash-loops/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 10:44:41 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=329</guid>
		<description><![CDATA[via Handling Filenames with Spaces in Bash]]></description>
			<content:encoded><![CDATA[<pre class="brush: bash; title: ; notranslate">
find ~ -name '* *' | while read FILE
do
    echo &quot;$FILE rocks.&quot;
done
</pre>
<p>via <a href="http://www.macgeekery.com/tips/cli/handling_filenames_with_spaces_in_bash">Handling Filenames with Spaces in Bash</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2009/11/24/handle-filenames-with-spaces-properly-in-bash-loops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

