<?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>WEBPIRATEN &#187; guide</title>
	<atom:link href="http://webpiraten.de/index.php/tag/guide/feed/" rel="self" type="application/rss+xml" />
	<link>http://webpiraten.de</link>
	<description>TECHNOLOGIE-BLOG</description>
	<lastBuildDate>Sun, 20 Jun 2010 19:00:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Shell Scripting Guide</title>
		<link>http://webpiraten.de/index.php/2009/12/shell-scripting-guide/</link>
		<comments>http://webpiraten.de/index.php/2009/12/shell-scripting-guide/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 16:04:51 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[bin]]></category>
		<category><![CDATA[freeos]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=221</guid>
		<description><![CDATA[Hier findet Ihr den Shell Scripting Guide: freeos.com/guides/lsst/ Dann kann man beispielsweise so kleine Helferlein zum Löschen von Logs und Caches wie diesen hier basteln: #!/bin/bash cd `dirname $0` # go to scripts dir cd .. # step ahead arr[0]='Application1/app/cache/*' arr[1]='Application1/var/cache/*' arr[2]='Application2/application/cache/*' arr[3]='Application2/application/logs/*' arr[4]='Application2/pub/tmp/*' arr[5]='Application3/application/cache/*' arr[6]='Application3/application/logs/*' arr[7]='Application3/pub/tmp/*' i=0 while [ $i -lt ${#arr[@]} ] do [...]]]></description>
			<content:encoded><![CDATA[<p>Hier findet Ihr den Shell Scripting Guide:</p>
<p><a href="http://www.freeos.com/guides/lsst/" target="_blank">freeos.com/guides/lsst/</a></p>
<p>Dann kann man beispielsweise so kleine Helferlein zum Löschen von Logs und Caches wie diesen hier basteln:</p>
<pre class="brush: bash;">
#!/bin/bash
cd `dirname $0` # go to scripts dir
cd .. # step ahead
arr[0]='Application1/app/cache/*'
arr[1]='Application1/var/cache/*'
arr[2]='Application2/application/cache/*'
arr[3]='Application2/application/logs/*'
arr[4]='Application2/pub/tmp/*'
arr[5]='Application3/application/cache/*'
arr[6]='Application3/application/logs/*'
arr[7]='Application3/pub/tmp/*'

i=0
while [ $i -lt ${#arr[@]} ]
do

rm -rf ${arr[$i]}
echo &quot;${arr[$i]} deleted&quot;

(( i=$i+1 ))
done
</pre>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2009/12/shell-scripting-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPUnit Manual &#8211; Sebastian Bergmann</title>
		<link>http://webpiraten.de/index.php/2009/10/phpunit-manual-sebastian-bergmann/</link>
		<comments>http://webpiraten.de/index.php/2009/10/phpunit-manual-sebastian-bergmann/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 22:48:25 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHPUnit]]></category>
		<category><![CDATA[bergmann]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[sebastian]]></category>
		<category><![CDATA[unit]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=179</guid>
		<description><![CDATA[Hier der komplette PHPUnit Guide um entsprechende Tests zu seiner Applikation zu schreiben. PHPUnit Manual]]></description>
			<content:encoded><![CDATA[<p>Hier der komplette PHPUnit Guide um entsprechende Tests zu seiner Applikation zu schreiben. </p>
<p><a href="http://phpunit.de/manual/current/en/" target="_blank" title="PHPUnit Manual - Sebastian Bergmann">PHPUnit Manual</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2009/10/phpunit-manual-sebastian-bergmann/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrum Guide von Ken Schwaber</title>
		<link>http://webpiraten.de/index.php/2009/10/scrum-guide-von-ken-schwaber/</link>
		<comments>http://webpiraten.de/index.php/2009/10/scrum-guide-von-ken-schwaber/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 22:31:47 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[Management & Prozesse]]></category>
		<category><![CDATA[Scrum]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[ken]]></category>
		<category><![CDATA[schwaber]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=167</guid>
		<description><![CDATA[Hier der Scrum Guide von Ken Schwaber für alle die hinter die Kulissen der agilen Produktentwicklung sehen wollen. Scrum Guide &#8211; Ken Schwaber als PDF]]></description>
			<content:encoded><![CDATA[<p>Hier der Scrum Guide von Ken Schwaber für alle die hinter die Kulissen der agilen Produktentwicklung sehen wollen.</p>
<p><a href="http://webpiraten.de/wp-content/uploads/2009/10/Scrum_Guide.pdf" target="_blank" title="Scrum Guide - Ken Schwaber">Scrum Guide &#8211; Ken Schwaber als PDF</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2009/10/scrum-guide-von-ken-schwaber/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
