<?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>Johannes Buchner &#187; hint</title>
	<atom:link href="http://johannes.jakeapp.com/blog/category/tag/hint/feed" rel="self" type="application/rss+xml" />
	<link>http://johannes.jakeapp.com/blog</link>
	<description>Johannes Buchner&#039;s blog about advanced usage of your operating system</description>
	<lastBuildDate>Sun, 18 Jul 2010 08:30:01 +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>sed: Remove lines that match a pattern</title>
		<link>http://johannes.jakeapp.com/blog/category/fun-with-linux/200906/sed-remove-lines-that-match-a-pattern</link>
		<comments>http://johannes.jakeapp.com/blog/category/fun-with-linux/200906/sed-remove-lines-that-match-a-pattern#comments</comments>
		<pubDate>Fri, 26 Jun 2009 23:26:41 +0000</pubDate>
		<dc:creator>JohannesTheDeveloper</dc:creator>
				<category><![CDATA[fun with Linux]]></category>
		<category><![CDATA[hint]]></category>

		<guid isPermaLink="false">http://johannes.jakeapp.com/blog/?p=5</guid>
		<description><![CDATA[
sed  '/mypattern/d' file

Deletes all lines that contain the regular expression &#8220;mypattern&#8221;.
In-place replacement:

sed --in-place '/mypattern/d' file1

sed also supports making backups with e.g. &#8211;in-place=.backup .
]]></description>
			<content:encoded><![CDATA[<p><code>
<pre>sed  '/mypattern/d' file</pre>
<p></code><br />
Deletes all lines that contain the regular expression &#8220;mypattern&#8221;.</p>
<p>In-place replacement:<br />
<code>
<pre>sed --in-place '/mypattern/d' file1</pre>
<p></code><br />
sed also supports making backups with e.g. &#8211;in-place=.backup .</p>
]]></content:encoded>
			<wfw:commentRss>http://johannes.jakeapp.com/blog/category/fun-with-linux/200906/sed-remove-lines-that-match-a-pattern/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shutdown when idle</title>
		<link>http://johannes.jakeapp.com/blog/category/fun-with-linux/200906/shutdown-when-idle</link>
		<comments>http://johannes.jakeapp.com/blog/category/fun-with-linux/200906/shutdown-when-idle#comments</comments>
		<pubDate>Fri, 19 Jun 2009 22:24:00 +0000</pubDate>
		<dc:creator>JohannesTheDeveloper</dc:creator>
				<category><![CDATA[fun with Linux]]></category>
		<category><![CDATA[hint]]></category>

		<guid isPermaLink="false">http://johannes.jakeapp.com/blog/?p=7</guid>
		<description><![CDATA[Maybe you want the computer to shutdown after it has done its task. This shuts down your Linux box when the load goes down to zero. Kind of like the &#8220;Speed&#8221; movies.
while ! cat /proc/loadavg &#124;cut -f2 -d ' '&#124;grep '0\.00'; do sleep 10m; done &#38;&#38; poweroff
Alternatively:
while ps 12345; do sleep 10m; done &#38;&#38; poweroff
]]></description>
			<content:encoded><![CDATA[<p>Maybe you want the computer to shutdown after it has done its task. This shuts down your Linux box when the load goes down to zero. Kind of like the &#8220;Speed&#8221; movies.</p>
<pre><code>while ! cat /proc/loadavg |cut -f2 -d ' '|grep '0\.00'; do sleep 10m; done &amp;&amp; poweroff</code></pre>
<p>Alternatively:</p>
<pre><code>while ps 12345; do sleep 10m; done &amp;&amp; poweroff</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://johannes.jakeapp.com/blog/category/fun-with-linux/200906/shutdown-when-idle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash: Chain of commands</title>
		<link>http://johannes.jakeapp.com/blog/category/fun-with-linux/200904/bash-chain-of-commands</link>
		<comments>http://johannes.jakeapp.com/blog/category/fun-with-linux/200904/bash-chain-of-commands#comments</comments>
		<pubDate>Sat, 25 Apr 2009 01:23:41 +0000</pubDate>
		<dc:creator>JohannesTheDeveloper</dc:creator>
				<category><![CDATA[fun with Linux]]></category>
		<category><![CDATA[hint]]></category>

		<guid isPermaLink="false">http://johannes.jakeapp.com/blog/?p=9</guid>
		<description><![CDATA[I wondered more than once how to make a tool that chains together input/output filters using bash. 
e.g. you would like to do a iteration of filters:
for i in 1 2 3 4; do grep -v $i; done
So I wrote this chaining tool that does the job in the obvious way:
chain.sh
#!/bin/bash
commands_file=$1
a=$(mktemp)
b=$(mktemp)
cat &#62; $a
while read line; [...]]]></description>
			<content:encoded><![CDATA[<p>I wondered more than once how to make a tool that chains together input/output filters using bash. <br />
e.g. you would like to do a iteration of filters:</p>
<pre><code lang="bash">for i in 1 2 3 4; do grep -v $i; done</code></pre>
<p>So I wrote this chaining tool that does the job in the obvious way:</p>
<p>chain.sh</p>
<pre><code lang="bash">#!/bin/bash
commands_file=$1
a=$(mktemp)
b=$(mktemp)
cat &gt; $a
while read line; do
$line &lt; $a &gt; $b
mv $b $a
done &lt; $commands_file
cat $a
rm $a</code></pre>
<p>With this, you can do:</p>
<pre><code>for i in 1 2 3 4; do
echo grep -v $i &gt;&gt; mycommands.txt
done
script/chain.sh mycommands.txt</code></pre>
<p> lang=&#8221;bash&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://johannes.jakeapp.com/blog/category/fun-with-linux/200904/bash-chain-of-commands/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>make: self-documenting Makefiles</title>
		<link>http://johannes.jakeapp.com/blog/category/happy-hacking/200904/make-self-documenting-makefiles</link>
		<comments>http://johannes.jakeapp.com/blog/category/happy-hacking/200904/make-self-documenting-makefiles#comments</comments>
		<pubDate>Sat, 18 Apr 2009 22:36:00 +0000</pubDate>
		<dc:creator>JohannesTheDeveloper</dc:creator>
				<category><![CDATA[Happy Hacking]]></category>
		<category><![CDATA[hint]]></category>

		<guid isPermaLink="false">http://johannes.jakeapp.com/blog/?p=12</guid>
		<description><![CDATA[With the following grep/sed combinations, you can keep the help for each target inline just above your target (or wherever you want it).
## Makefile for foo

## help: this clutter

help:

        @grep -E '^## ' Makefile&#124;grep -v ':'&#124;sed 's,^## ,,g'

        @echo This Makefile [...]]]></description>
			<content:encoded><![CDATA[<p>With the following grep/sed combinations, you can keep the help for each target inline just above your target (or wherever you want it).</p>
<pre><code>## Makefile for foo

## help: this clutter

help:

        @grep -E '^## ' Makefile|grep -v ':'|sed 's,^## ,,g'

        @echo This Makefile has the targets:

        @grep -E '^## [.a-z]{2,}:' Makefile|sed 's,^## *,\t,g' |sed 's,: ,\t,g'

## tests: run the tests

tests: tests.exe

        ./tests.exe ${TESTNR}

</code></pre>
<p>Output of </p>
<pre><code>

$ make help

Makefile for foo

This Makefile has the targets:

	help	this clutter

	all	

	tests	run the tests

...

</code></pre>
<p>Nice, leet and meta. :-)</p>
<p>Some more words on Makefiles: You can use something like</p>
<pre><code>CFLAGS=-O3 -Wall -Werror -Wextra -g -ansi -pedantic ${CCFLAGS}</code></pre>
<p>and pass CCFLAGS from outside. This avoids having many many versions while trying to test things out. For example:</p>
<pre><code>$ CCFLAGS="-DDEBUG -Os -DUSED_ALGORITHM=binsearch2" make tests</code></pre>
<p>(if you didn&#8217;t notice yet, -DFOO lets you jump inside #ifdef FOO).</p>
]]></content:encoded>
			<wfw:commentRss>http://johannes.jakeapp.com/blog/category/happy-hacking/200904/make-self-documenting-makefiles/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add collaborator to GitHub repository</title>
		<link>http://johannes.jakeapp.com/blog/category/fun-with-linux/200903/add-collaborator-to-github-repository</link>
		<comments>http://johannes.jakeapp.com/blog/category/fun-with-linux/200903/add-collaborator-to-github-repository#comments</comments>
		<pubDate>Fri, 06 Mar 2009 13:05:28 +0000</pubDate>
		<dc:creator>JohannesTheDeveloper</dc:creator>
				<category><![CDATA[fun with Linux]]></category>
		<category><![CDATA[hint]]></category>

		<guid isPermaLink="false">http://johannes.jakeapp.com/blog/?p=20</guid>
		<description><![CDATA[Don&#8217;t let them clone the public url: It doesn&#8217;t go over ssh and I don&#8217;t know how to change the origin url in a branch. *
Steps:

create ssh-key on new collaborators computer (ssh-keygen)
create github user
add public-key to github user account
let the project owner add you as project member
git clone git@&#8230; 

Where 1 &#60; 3, 1 &#60; [...]]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t let them clone the public url: It doesn&#8217;t go over ssh and I don&#8217;t know how to change the origin url in a branch. *</p>
<p>Steps:</p>
<ol>
<li>create ssh-key on new collaborators computer (ssh-keygen)</li>
<li>create github user</li>
<li>add public-key to github user account</li>
<li>let the project owner add you as project member</li>
<li>git clone git@&#8230; </li>
</ol>
<p>Where 1 &lt; 3, 1 &lt; 2 &lt; 4, 2 &lt; 5 if that means anything to you ;-)</p>
<p>* it works with git remote</p>
]]></content:encoded>
			<wfw:commentRss>http://johannes.jakeapp.com/blog/category/fun-with-linux/200903/add-collaborator-to-github-repository/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Autologin on websites</title>
		<link>http://johannes.jakeapp.com/blog/category/happy-hacking/200901/autologin-on-websites</link>
		<comments>http://johannes.jakeapp.com/blog/category/happy-hacking/200901/autologin-on-websites#comments</comments>
		<pubDate>Mon, 19 Jan 2009 14:54:26 +0000</pubDate>
		<dc:creator>JohannesTheDeveloper</dc:creator>
				<category><![CDATA[Happy Hacking]]></category>
		<category><![CDATA[hint]]></category>

		<guid isPermaLink="false">http://johannes.jakeapp.com/blog/?p=25</guid>
		<description><![CDATA[Some sites provide for their login one form that just contain the login form. Firefox fills it out with username+password, but you still have to aim at the submit button.
This greasemonkey-script provides auto-login for TUWEL, TUWIS and any other site you want that only provides one form. autologin.user (js, 1 KB)
]]></description>
			<content:encoded><![CDATA[<p>Some sites provide for their login one form that just contain the login form. Firefox fills it out with username+password, but you still have to aim at the submit button.<br />
This greasemonkey-script provides auto-login for TUWEL, TUWIS and any other site you want that only provides one form. <a title="" href="http://johannes.jakeapp.com/blog/oldblog/files/autologin.user.js" as="link">autologin.user</a> (js, 1 KB)</p>
]]></content:encoded>
			<wfw:commentRss>http://johannes.jakeapp.com/blog/category/happy-hacking/200901/autologin-on-websites/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maven: Colorized</title>
		<link>http://johannes.jakeapp.com/blog/category/fun-with-linux/200901/maven-colorized</link>
		<comments>http://johannes.jakeapp.com/blog/category/fun-with-linux/200901/maven-colorized#comments</comments>
		<pubDate>Wed, 07 Jan 2009 03:19:07 +0000</pubDate>
		<dc:creator>JohannesTheDeveloper</dc:creator>
				<category><![CDATA[fun with Linux]]></category>
		<category><![CDATA[hint]]></category>
		<category><![CDATA[thisreallyworks]]></category>

		<guid isPermaLink="false">http://johannes.jakeapp.com/blog/?p=28</guid>
		<description><![CDATA[Maven was written by people who obviously have no idea on how to create good tui (Text User Interface)-tools. They should sit together with the portage, git or other Linux-devs. 
The output is unreadable (not to mention that the startup is slow). 
So, what I did was wrap maven in a script that colorizes the [...]]]></description>
			<content:encoded><![CDATA[<p>Maven was written by people who obviously have no idea on how to create good tui (Text User Interface)-tools. They should sit together with the portage, git or other Linux-devs. <br />
The output is unreadable (not to mention that the startup is slow). </p>
<p>So, what I did was wrap maven in a script that colorizes the output. The result looks like this:<br />
<img width="400" height="163" title="" src="http://johannes.jakeapp.com/blog/oldblog/images/colorizedmaven.png" alt="colorizedmaven" /></p>
<p>This is how to do it:<br />
create the file ~/bin/mvn with the following content (<a title="" href="http://johannes.jakeapp.com/blog/oldblog/files/mvn." as="link">mvn</a> (0 KB))
<pre><code>#!/bin/bash
/usr/bin/mvn $* | sed -e 's/Tests run: \([^,]*\), Failures: \([^,]*\), Errors: \([^,]*\), Skipped: \([^,]*\)/[1;32mTests run: \1[0m, Failures: [1;31m\2[0m, Errors: [1;33m\3[0m, Skipped: [1;34m\4[0m/g' \
-e 's/\(\[WARN\].*\)/[1;33m\1[0m/g' \
-e 's/\(\[INFO\].*\)/[1;34m\1[0m/g' \
-e 's/\(\[ERROR\].*\)/[1;31m\1[0m/g'</code></pre>
<p>replace /usr/bin/mvn with wherever your mvn is (find out with <code>which mvn</code>).<br />
Double-check that you get the encoding right, the weird sign should be hexadecimal 1b. Use a editor that supports encodings for copy+paste.<br />
Give your ~/bin/mvn execute permissions (<code>chmod +x ~/bin/mvn</code>)</p>
<p>Try it out: call <code>~/bin/mvn</code> in one of your maven projects</p>
<p>What is left to do is to register your new mvn-wrapper so it is called everytime. <br />
Add the following line to your ~/.bashrc :
<pre><code>alias mvn=~/bin/mvn</code></pre>
<p>Execute the command you just added in your running shells so you can use it there too.</p>
<p>You are done.</p>
<p><strong>Changing the distributed mvn startup script</strong></p>
<p>Even better, but a little more intrusive (you need root rights): <br />
change the distributed mvn file. It is a bash script actually. <br />
In gentoo:</p>
<pre><code> $ which mvn
/usr/bin/mvn
$ file /usr/bin/mvn
/usr/bin/mvn: symbolic link to `/usr/share/maven-bin-2.0/bin/mvn'
$ file /usr/share/maven-bin-2.0/bin/mvn
/usr/share/maven-bin-2.0/bin/mvn: Bourne shell script text executable
$ </code></pre>
<p>Change the last call in that file to:</p>
<pre><code>exec "$JAVACMD" \
$MAVEN_OPTS \
-classpath "${M2_HOME}"/boot/classworlds-*.jar \
"-Dclassworlds.conf=${M2_HOME}/bin/m2.conf" \
"-Dmaven.home=${M2_HOME}"  \
${CLASSWORLDS_LAUNCHER} $QUOTED_ARGS |
sed -e 's/Tests run: \([^,]*\), Failures: \([^,]*\), Errors: \([^,]*\), Skipped: \([^,]*\)/[1;32mTests run: \1[0m, Failures: [1;31m\2[0m, Errors: [1;33m\3[0m, Skipped: [1;34m\4[0m/g' \
-e 's/\(\[WARN\].*\)/[1;33m\1[0m/g' \
-e 's/\(\[INFO\].*\)/[1;34m\1[0m/g' \
-e 's/\(\[ERROR\].*\)/[1;31m\1[0m/g'
</code></pre>
<p>That way you have it there directly. Maybe the gentoo devs could add a color use-flag. That&#8217;d be fun&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://johannes.jakeapp.com/blog/category/fun-with-linux/200901/maven-colorized/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash: Timeouts</title>
		<link>http://johannes.jakeapp.com/blog/category/fun-with-linux/200901/bash-timeouts</link>
		<comments>http://johannes.jakeapp.com/blog/category/fun-with-linux/200901/bash-timeouts#comments</comments>
		<pubDate>Tue, 06 Jan 2009 23:36:09 +0000</pubDate>
		<dc:creator>JohannesTheDeveloper</dc:creator>
				<category><![CDATA[fun with Linux]]></category>
		<category><![CDATA[hint]]></category>

		<guid isPermaLink="false">http://johannes.jakeapp.com/blog/?p=27</guid>
		<description><![CDATA[You have a command and want to kill it after a certain time if it hasn&#8217;t finished.
This script does it for you:
timeoutwrapper.sh
#!/bin/bash
# License: BSD License
# author: Ram
# author: Johannes Buchner
TIMEOUT=$1
shift
COMMAND="$*"
if [[ "$TIMEOUT" == "" ]] &#124;&#124; [[ "$COMMAND" == "" ]]; then
echo "USAGE: $0 &#60;seconds to wait&#62; &#60;command with arguments&#62;"
exit
fi
$COMMAND &#38;
PRODPID=$!
export PRODPID
# record own PID
export [...]]]></description>
			<content:encoded><![CDATA[<p>You have a command and want to kill it after a certain time if it hasn&#8217;t finished.<br />
This script does it for you:</p>
<p>timeoutwrapper.sh
<pre name="code" class="Bash"><code>#!/bin/bash
# License: BSD License
# author: Ram
# author: Johannes Buchner
TIMEOUT=$1
shift
COMMAND="$*"
if [[ "$TIMEOUT" == "" ]] || [[ "$COMMAND" == "" ]]; then
echo "USAGE: $0 &lt;seconds to wait&gt; &lt;command with arguments&gt;"
exit
fi
$COMMAND &amp;
PRODPID=$!
export PRODPID
# record own PID
export PID=$$
# define exit function
exit_timeout() {
echo "Timeout. Checking for unfinished."
for i in ${PRODPID} ; do
ps -p $i |grep -v "PID TTY"
if [ $? == 0 ] ; then
# process still alive
echo "Sending SIGTERM to process $i"
kill $i
fi
done
# timeout exit
exit
}
# Handler for signal USR1 for the timer
trap exit_timeout SIGUSR1
# starting timer in subshell. It sends a SIGUSR1 to the father if it timeouts.
export TIMEOUT
(sleep $TIMEOUT ; kill -SIGUSR1 $PID) &amp;
# record PID of timer
TPID=$!
# wait for all production processes to finish
wait ${PRODPID}
# Normal exit
echo "All processes ended normal"
# kill timer
kill $TPID</code></pre>
<p>Usage examples:</p>
<pre><code>$ bash timeoutwrapper.sh
USAGE: timeoutwrapper.sh &lt;seconds to wait&gt; &lt;command with arguments&gt;
$ bash timeoutwrapper.sh 1 sleep 3
Timeout. Checking for unfinished.
26612 pts/3    00:00:00 sleep
Sending SIGTERM to process 26612
$ bash timeoutwrapper.sh 4 sleep 3
All processes ended normal
$ bash timeoutwrapper.sh 2 du -sh .
Timeout. Checking for unfinished.
26622 pts/3    00:00:00 du
Sending SIGTERM to process 26622
$</code></pre>
<p>
PS: I found the script here and adopted it<br />
<a href="http://redflo.de/tiki-index.php?page=Bash+script+with+timeout+function">http://redflo.de/tiki-index.php?page=Bash+script+with+timeout+function</a></p>
]]></content:encoded>
			<wfw:commentRss>http://johannes.jakeapp.com/blog/category/fun-with-linux/200901/bash-timeouts/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SSH -R is even cooler than -L</title>
		<link>http://johannes.jakeapp.com/blog/category/fun-with-linux/200901/ssh-r-is-even-cooler-than-l</link>
		<comments>http://johannes.jakeapp.com/blog/category/fun-with-linux/200901/ssh-r-is-even-cooler-than-l#comments</comments>
		<pubDate>Mon, 05 Jan 2009 18:19:51 +0000</pubDate>
		<dc:creator>JohannesTheDeveloper</dc:creator>
				<category><![CDATA[fun with Linux]]></category>
		<category><![CDATA[hint]]></category>

		<guid isPermaLink="false">http://johannes.jakeapp.com/blog/?p=30</guid>
		<description><![CDATA[To be honest with you, I thought for three years now that the -L option of ssh is a cool thing. It connects to the ssh server and offers a remote service (port) locally. Call it port tunnelling. Great against firewalls.
Anyway, consider you have a ssh server in the internet, and two computers behind different [...]]]></description>
			<content:encoded><![CDATA[<p>To be honest with you, I thought for three years now that the -L option of ssh is a cool thing. It connects to the ssh server and offers a remote service (port) locally. Call it port tunnelling. Great against firewalls.</p>
<p>Anyway, consider you have a ssh server in the internet, and two computers behind different firewalls that only let traffic out. But you want to connect from computer A to computer B. <br />
So you could connect to the ssh server from both computers, but you would need some software that reverses your TCP flow. One of the channels has to be the client and one the server. That might even be possible just using pipes and ssh -L. </p>
<p>Ok, so I thought I was clever until I found the -R option. <br />
What it does is to connects to the ssh server and offers a local service (port) remotely.  (-L offers a remote service (port) locally.) <br />
Consequent.  And works nicely too!</p>
]]></content:encoded>
			<wfw:commentRss>http://johannes.jakeapp.com/blog/category/fun-with-linux/200901/ssh-r-is-even-cooler-than-l/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash: Choose a random value out of a set</title>
		<link>http://johannes.jakeapp.com/blog/category/happy-hacking/200811/bash-choose-a-random-value-out-of-a-set</link>
		<comments>http://johannes.jakeapp.com/blog/category/happy-hacking/200811/bash-choose-a-random-value-out-of-a-set#comments</comments>
		<pubDate>Fri, 28 Nov 2008 20:53:30 +0000</pubDate>
		<dc:creator>JohannesTheDeveloper</dc:creator>
				<category><![CDATA[Happy Hacking]]></category>
		<category><![CDATA[hint]]></category>

		<guid isPermaLink="false">http://johannes.jakeapp.com/blog/?p=36</guid>
		<description><![CDATA[The best scripts are the shortest.
This chooses one of the arguments randomly. $# is the number of arguments
#!/bin/bash
echo ${BASH_ARGV[ $(( $RANDOM % $# )) ]}
Example:
$ bash randomchooser.sh 1 2 3 4 5 6 7 8 9 120
3
]]></description>
			<content:encoded><![CDATA[<p>The best scripts are the shortest.<br />
This chooses one of the arguments randomly. $# is the number of arguments</p>
<pre><code>#!/bin/bash
echo ${BASH_ARGV[ $(( $RANDOM % $# )) ]}</code></pre>
<p>Example:</p>
<pre><code>$ bash randomchooser.sh 1 2 3 4 5 6 7 8 9 120
3</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://johannes.jakeapp.com/blog/category/happy-hacking/200811/bash-choose-a-random-value-out-of-a-set/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
