<?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/"
	>

<channel>
	<title>Zandozan.com</title>
	<atom:link href="http://www.zandozan.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.zandozan.com/blog</link>
	<description>Interstellar Hitbeast</description>
	<pubDate>Wed, 18 Mar 2009 21:27:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Shell Script For UNIX - Recursively Convert Uppercase to Lowercase</title>
		<link>http://www.zandozan.com/blog/?p=6</link>
		<comments>http://www.zandozan.com/blog/?p=6#comments</comments>
		<pubDate>Wed, 18 Mar 2009 21:13:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.zandozan.com/blog/?p=6</guid>
		<description><![CDATA[The other day I needed to convert all folders, their subfolders, and all containing files from uppercase to lowercase on a UNIX machine.  I&#8217;m not as saavy with UNIX as I&#8217;d like to be, but after a little trial and error came up with a script that did what I needed it to do.   I [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I needed to convert all folders, their subfolders, and all containing files from uppercase to lowercase on a UNIX machine.  I&#8217;m not as saavy with UNIX as I&#8217;d like to be, but after a little trial and error came up with a script that did what I needed it to do.   I couldnt find anything to do exactly what I needed online, so hopefully this will come in useful for somebody.</p>
<p>#!/bin/bash</p>
<p>if [ -n "$1" ]<br />
then<br />
if [ -d "$1" ]<br />
then cd &#8220;$1&#8243;<br />
else<br />
echo Invalid Directory<br />
exit<br />
fi<br />
fi</p>
<p>for x in `find . -type d`<br />
do new=`echo $x | tr &#8216;[:upper:]&#8216; &#8216;[:lower:]&#8216;`<br />
mv $x $new<br />
done</p>
<p>for x in `find . -type f`<br />
do new=`echo $x | tr &#8216;[:upper:]&#8216; &#8216;[:lower:]&#8216;`<br />
mv $x $new<br />
done</p>
<p> Just put this in a file and run it with the path to your directory as the input parameter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zandozan.com/blog/?feed=rss2&amp;p=6</wfw:commentRss>
		</item>
		<item>
		<title>New Utility - SPKiller</title>
		<link>http://www.zandozan.com/blog/?p=4</link>
		<comments>http://www.zandozan.com/blog/?p=4#comments</comments>
		<pubDate>Mon, 12 Jan 2009 22:52:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Downloads]]></category>

		<guid isPermaLink="false">http://www.zandozan.com/blog/?p=4</guid>
		<description><![CDATA[SPKiller (Service and Process Killer) is a windows service that sits quietly on a timer thread in the background, stopping and killing any service and/or process that you specify in the SPKPreferences.xml file every n milliseconds.  Very handy for things you just can&#8217;t seem to get rid of - AdobeUpdater, GoogleToolbarNotifier, AppleMobileDeviceService, etc, etc.
Download, extract, view [...]]]></description>
			<content:encoded><![CDATA[<p>SPKiller (Service and Process Killer) is a windows service that sits quietly on a timer thread in the background, stopping and killing any service and/or process that you specify in the SPKPreferences.xml file every n milliseconds.  Very handy for things you just can&#8217;t seem to get rid of - AdobeUpdater, GoogleToolbarNotifier, AppleMobileDeviceService, etc, etc.</p>
<p>Download, extract, view the ReadMe.</p>
<p>USE AT YOUR OWN RISK!!!</p>
<p>***note***<br />
 The SPKPreferences.xml is preconfigured with several services and processes that can prove to be performance drains, or just annoying in general.  Modify this file to suit your needs.<br />
**********</p>
<p><center><br />
<a href="http://www.zandozan.com/apps/ServiceProcessKiller.rar" onclick="">DOWNLOAD SPKiller beta</a><br />
</center><center><br />
<img src="http://streetknowledge.files.wordpress.com/2007/12/terminator4.jpg" /></center><br />
<center><br />
<script type="text/javascript"><!--
google_ad_client = "pub-1423438648043119";
/* 180x150, created 3/18/09 */
google_ad_slot = "5055676683";
google_ad_width = 180;
google_ad_height = 150;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
</center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zandozan.com/blog/?feed=rss2&amp;p=4</wfw:commentRss>
		</item>
		<item>
		<title>First Post</title>
		<link>http://www.zandozan.com/blog/?p=3</link>
		<comments>http://www.zandozan.com/blog/?p=3#comments</comments>
		<pubDate>Mon, 24 Nov 2008 17:06:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.zandozan.com/blog/?p=3</guid>
		<description><![CDATA[Hi and thanks for coming to check out Zandozan.com!  This is a blog for everything I think is neat. 
]]></description>
			<content:encoded><![CDATA[<p>Hi and thanks for coming to check out Zandozan.com!  This is a blog for everything I think is neat. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.zandozan.com/blog/?feed=rss2&amp;p=3</wfw:commentRss>
		</item>
	</channel>
</rss>
