<?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>Slopjongs weblog &#187; shell</title>
	<atom:link href="http://slopjong.de/tag/shell/feed/" rel="self" type="application/rss+xml" />
	<link>http://slopjong.de</link>
	<description>A geek discovering the World, Tech &#38; Science</description>
	<lastBuildDate>Sun, 15 Apr 2012 14:03:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Arch Linux: failed to load module `zsh/computil&#8217;</title>
		<link>http://slopjong.de/2012/02/21/arch-linux-failed-to-load-module-zshcomputil/</link>
		<comments>http://slopjong.de/2012/02/21/arch-linux-failed-to-load-module-zshcomputil/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 15:42:18 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Arch Linux]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[ZSH]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=5708</guid>
		<description><![CDATA[If you&#8217;ve recently updated zsh and used tab auto-complete you&#8217;re getting the following error message. 
➜  zsh  cd
_tags:36: failed to load module `zsh/computil': /usr/lib/zsh/4.3.15/zsh/computil.so: cannot open shared object file: No such file or directory
_tags:51: failed to load module `zsh/computil': /usr/lib/zsh/4.3.15/zsh/computil.so: cannot open shared object file: No such file or directory
_tags:51: command not found: [...]]]></description>
		<wfw:commentRss>http://slopjong.de/2012/02/21/arch-linux-failed-to-load-module-zshcomputil/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Installing python modules in your home</title>
		<link>http://slopjong.de/2011/07/13/installing-python-modules-in-your-home/</link>
		<comments>http://slopjong.de/2011/07/13/installing-python-modules-in-your-home/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 17:09:44 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=4751</guid>
		<description><![CDATA[If you are working on a computer where you need python modules that are not installed and you haven&#8217;t enough privileges you can install them in your home folder following these instructions:

cd lxml-2.3
python setup.py build
python setup.py install --home=~

In this example I&#8217;m compiling the lxml source. In the third line the setup script creates the directory [...]]]></description>
		<wfw:commentRss>http://slopjong.de/2011/07/13/installing-python-modules-in-your-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ID3 batch editing</title>
		<link>http://slopjong.de/2010/08/30/id3-batch-editing/</link>
		<comments>http://slopjong.de/2010/08/30/id3-batch-editing/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 15:16:22 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Batch scripting]]></category>
		<category><![CDATA[ID3]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=4145</guid>
		<description><![CDATA[Some of my music had no interpreter and title tags set thus I wrote a little shell script to batch edit these ID3 tags. The filenames of the songs looked like &#8220;01 Interpret &#8211; Song Title.mp3&#8243;. In a few moments I wrote the following php script1 which split the filename into the interpreter and the [...]]]></description>
		<wfw:commentRss>http://slopjong.de/2010/08/30/id3-batch-editing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch printing</title>
		<link>http://slopjong.de/2010/02/01/batch-printing/</link>
		<comments>http://slopjong.de/2010/02/01/batch-printing/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 15:30:51 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[printing]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=3400</guid>
		<description><![CDATA[I often upload some pdf files on a server to print them at my faculty. On the server I follow these steps:
1. Convert the uploaded pdf files to postscript 

for file in `ls -1`; do pdftops $file; done

ls -11 lists all the files of the current directory, one file per line. pdftops actually converts the [...]]]></description>
		<wfw:commentRss>http://slopjong.de/2010/02/01/batch-printing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change permantly Terminal&#8217;s style for new windows</title>
		<link>http://slopjong.de/2009/11/09/change-terminals-style-for-new-windows-permantly/</link>
		<comments>http://slopjong.de/2009/11/09/change-terminals-style-for-new-windows-permantly/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 14:32:42 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=3303</guid>
		<description><![CDATA[I have configured Terminal&#8217;s style as Homebrew but it&#8217;s only used for the first window if Terminal is launched. If I type the shortcut Command+N the new window has the basic style which I don&#8217;t like, it&#8217;s just white so not really stylish. I knew that defaults exist to modify an application&#8217;s settings using a [...]]]></description>
		<wfw:commentRss>http://slopjong.de/2009/11/09/change-terminals-style-for-new-windows-permantly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Mac and *nix commands</title>
		<link>http://slopjong.de/2009/01/25/useful-mac-commands/</link>
		<comments>http://slopjong.de/2009/01/25/useful-mac-commands/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 14:53:09 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=680</guid>
		<description><![CDATA[I forget regularly useful commands and that&#8217;s why I list some of them here. The page is neither intended to be a complete reference nor a list of mac-only commands. Some are, others aren&#8217;t. I update this post now and then and as soon as I review the post I&#8217;ll mark everything what&#8217;s mac- or [...]]]></description>
		<wfw:commentRss>http://slopjong.de/2009/01/25/useful-mac-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

