<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Python tip: zcd</title>
	<atom:link href="http://www.teamrubber.com/blog/python-tip-zcd/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.teamrubber.com/blog/python-tip-zcd/</link>
	<description>Team Rubber talks on the Internet in a blog</description>
	<lastBuildDate>Thu, 08 Dec 2011 13:10:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: Alexander Limi</title>
		<link>http://www.teamrubber.com/blog/python-tip-zcd/comment-page-1/#comment-12249</link>
		<dc:creator>Alexander Limi</dc:creator>
		<pubDate>Thu, 17 Dec 2009 04:14:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.teamrubber.com/blog/?p=1259#comment-12249</guid>
		<description>Autojump takes zcd, spanks it, and leaves it in a ditch:

http://wiki.github.com/joelthelion/autojump

Highly recommended!</description>
		<content:encoded><![CDATA[<p>Autojump takes zcd, spanks it, and leaves it in a ditch:</p>
<p><a href="http://wiki.github.com/joelthelion/autojump" rel="nofollow">http://wiki.github.com/joelthelion/autojump</a></p>
<p>Highly recommended!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Python tip: zcd &#124; We Are Team Rubber MoinMoin Wiki</title>
		<link>http://www.teamrubber.com/blog/python-tip-zcd/comment-page-1/#comment-12240</link>
		<dc:creator>Python tip: zcd &#124; We Are Team Rubber MoinMoin Wiki</dc:creator>
		<pubDate>Wed, 16 Dec 2009 14:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.teamrubber.com/blog/?p=1259#comment-12240</guid>
		<description>[...] here to see the original: Python tip: zcd &#124; We Are Team Rubber          By admin &#124; category: python &#124; tags: been-involved, developer, few-personal, game-projects, [...]</description>
		<content:encoded><![CDATA[<p>[...] here to see the original: Python tip: zcd | We Are Team Rubber          By admin | category: python | tags: been-involved, developer, few-personal, game-projects, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Aspeli</title>
		<link>http://www.teamrubber.com/blog/python-tip-zcd/comment-page-1/#comment-12239</link>
		<dc:creator>Martin Aspeli</dc:creator>
		<pubDate>Wed, 16 Dec 2009 13:57:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.teamrubber.com/blog/?p=1259#comment-12239</guid>
		<description>Here is a slightly more advanced version that can deal with a src/ subfolder as well and falls back on the normal cd if neither directory can be found

function zcd() {
    target=$(echo $1 &#124; sed -e &quot;s/\\./\\//g&quot;)
    if [ -d &quot;$1/${target}&quot; ] ; then
         cd $1/$target
    elif [ -d &quot;$1/src/${target}&quot; ] ; then
        cd $1/src/$target
    else
        cd $1
    fi
}</description>
		<content:encoded><![CDATA[<p>Here is a slightly more advanced version that can deal with a src/ subfolder as well and falls back on the normal cd if neither directory can be found</p>
<p>function zcd() {<br />
    target=$(echo $1 | sed -e &#8220;s/\\./\\//g&#8221;)<br />
    if [ -d "$1/${target}" ] ; then<br />
         cd $1/$target<br />
    elif [ -d "$1/src/${target}" ] ; then<br />
        cd $1/src/$target<br />
    else<br />
        cd $1<br />
    fi<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>

