<?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>Technology: Learn and Share &#187; Quick Tips</title>
	<atom:link href="http://crazytoon.com/category/quick-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://crazytoon.com</link>
	<description>Enterprise level solutions, LAMP, Linux, Apache, MySQL, PHP, Perl, Windows, Cache, Optimization</description>
	<lastBuildDate>Fri, 16 Jul 2010 20:24:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Telnet: shell script to issue commands to telnet session.</title>
		<link>http://crazytoon.com/2009/01/03/telnet-shell-script-to-issue-commands-to-telnet-session/</link>
		<comments>http://crazytoon.com/2009/01/03/telnet-shell-script-to-issue-commands-to-telnet-session/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 15:25:43 +0000</pubDate>
		<dc:creator>Sunny Walia</dc:creator>
				<category><![CDATA[Linux Apache MySQL PHP]]></category>
		<category><![CDATA[Linux System]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[memcached]]></category>
		<category><![CDATA[telnet]]></category>

		<guid isPermaLink="false">http://crazytoon.com/?p=159</guid>
		<description><![CDATA[This is a quick post to show how one can issue commands to telnet session from a shell script or command line with out going into interactive mode.  I use this to get stats from our memcache servers or issue a flush_all via telnet from a script/cron.
So without further delay, following command will telnet [...]]]></description>
			<content:encoded><![CDATA[<p>This is a quick post to show how one can issue commands to <a title="man telnet - man page for telnet " href="http://www.lamp-tips.com/man-pages/telnet /" target="_blank">telnet</a> session from a shell script or command line with out going into interactive mode.  I use this to get stats from our memcache servers or issue a flush_all via <a title="man telnet - man page for telnet " href="http://www.lamp-tips.com/man-pages/telnet /" target="_blank">telnet</a> from a script/cron.</p>
<p>So without further delay, following command will telnet to local memcached server on port 11211 and issue one of the memcached commands, stats</p>
<p><code>(sleep .5;echo stats) | telnet localhost 11211</code><br />
You may have to play with the sleep timer to get it to work for your environment but in our .5 was the sweet spot.  Good luck and let me know if you have another shell command.  Obviously we can do this from perl, php, python, etc but the beauty of this is that you do not need any other dependencies plus its a very short command.</p>
<p>Since &#8220;jsled&#8221; commented about <a title="man nc - man page for nc" href="http://www.lamp-tips.com/man-pages/nc/" target="_blank">nc</a> (thanks jsled), here is the syntax to do the same thing with <a title="man nc - man page for nc" href="http://www.lamp-tips.com/man-pages/nc/" target="_blank">nc</a>:</p>
<p><code>echo "stats" | nc localhost 11211</code></p>
]]></content:encoded>
			<wfw:commentRss>http://crazytoon.com/2009/01/03/telnet-shell-script-to-issue-commands-to-telnet-session/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Linux:  How do you rename a user account in linux?</title>
		<link>http://crazytoon.com/2008/05/09/linux-how-do-you-rename-a-user-account-in-linux/</link>
		<comments>http://crazytoon.com/2008/05/09/linux-how-do-you-rename-a-user-account-in-linux/#comments</comments>
		<pubDate>Fri, 09 May 2008 11:13:19 +0000</pubDate>
		<dc:creator>Sunny Walia</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux Apache MySQL PHP]]></category>
		<category><![CDATA[Linux System]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Redhat]]></category>
		<category><![CDATA[System admin]]></category>

		<guid isPermaLink="false">http://crazytoon.com/?p=69</guid>
		<description><![CDATA[In Linux, there is no command which will rename a user account. If you make a mistake creating a user account, user changes their name or if user does not like his user name, there is no real easy way of going and making the change.  Only thing I know you can do is [...]]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: line-through;">In Linux, there is no command which will rename a user account.</span> If you make a mistake creating a user account, user changes their name or if user does not like his user name, there is no real easy way of going and making the change.  Only thing I know you can do is to go through some files and rename user manually.  Let us say that we have a user who is named joe and we want to rename him to john.</p>
<p>Note:  you must be logged in as root to do following.</p>
<p>vi /etc/passwd<br />
find joe and change it to john, save/exit</p>
<p>vi /etc/group<br />
find joe and change it to john, save/exit</p>
<p>vi /etc/shadow<br />
find joe and change it to john.  This file is read only and you have to force overwrite it.  In vi it is :w!  once saved, quit.</p>
<p>cd /home<br />
mv joe john</p>
<p>And that should do the trick.</p>
<p>[Edited] Right after I posted this post, I was contacted and was told to look at utility called usermod.  Read more about it <a title="Man usermod:  man page for usermod" href="http://www.lamp-tips.com/man-pages/usermod/" target="_blank">man usermod</a>.  Got to love the quick responses.  </p>
<p>————————————-<br />
<small>DISCLAIMER: Please be smart and use code found on internet carefully. Make backups often. And yeah.. last but not least.. I am not responsible for any damage caused by this posting. <strong>Use at your own risk</strong>.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://crazytoon.com/2008/05/09/linux-how-do-you-rename-a-user-account-in-linux/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Linux: How do you display specific information at login prompt in Linux on the console?</title>
		<link>http://crazytoon.com/2008/04/22/linux-how-to-change-login-prompt-in-linux/</link>
		<comments>http://crazytoon.com/2008/04/22/linux-how-to-change-login-prompt-in-linux/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 02:00:50 +0000</pubDate>
		<dc:creator>Sunny Walia</dc:creator>
				<category><![CDATA[Linux Apache MySQL PHP]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[login prompt]]></category>

		<guid isPermaLink="false">http://crazytoon.com/?p=63</guid>
		<description><![CDATA[Buddy of mine asked me a question over chat today: &#8220;how do I show my machines&#8217; IP at login prompt with out logging in?&#8221;  He is referring to his Virtual Machine in this case.  He does not want to have to log in to the server to see what ip it has (since [...]]]></description>
			<content:encoded><![CDATA[<p>Buddy of mine asked me a question over chat today: &#8220;how do I show my machines&#8217; IP at login prompt with out logging in?&#8221;  He is referring to his Virtual Machine in this case.  He does not want to have to log in to the server to see what ip it has (since its on dhcp) for him to ssh in or hit it from the browser.  I could have answered him with a simple how to but what is the fun in that?  So I decided to give some background on how login prompts are done and show what can be done.</p>
<p>When Linux server boots up, it calls a program called mingetty.  This program creates that infamous login prompt as show in a screenshot:</p>
<p><img style="vertical-align: middle;" src="http://crazytoon.com/wp-content/uploads/2008/04/centos_default_login_prompt-300x74.png" alt="Screenshot of default CentOS login prompt on x86_64 server" /></p>
<p>You can see how server calls the mingetty program by looking at <em>/etc/inittab</em>.  You will see a block like below:</p>
<p><code># Run gettys in standard runlevels<br />
1:2345:respawn:/sbin/mingetty tty1<br />
2:2345:respawn:/sbin/mingetty tty2<br />
3:2345:respawn:/sbin/mingetty tty3<br />
4:2345:respawn:/sbin/mingetty tty4<br />
5:2345:respawn:/sbin/mingetty tty5<br />
6:2345:respawn:/sbin/mingetty tty6</code></p>
<p>When <em>mingetty</em> is called, it reads a file called /etc/issue.  There are a lot of existing variables you use.  For example the prompt shown above in example is:</p>
<p><code>CentOS release 5 (Final)<br />
Kernel \r on an \m</code></p>
<p>All of the available variables are list here on this page:  <a title="man mingetty - Man page for mingetty" href="http://www.lamp-tips.com/man-pages/mingetty/" target="_blank">http://www.lamp-tips.com/man-pages/mingetty/</a></p>
<p>If you were paying attention in the beginning of the post and looked at all of the available variables you can use, you would notice there is nothing in there which talks about IP.  Since there is no variables available, you would have to sort of hack it.  Put following in your /etc/rc.local file:</p>
<p><code>echo "CentOS release 5 (Final)" &gt; /etc/issue<br />
echo "Kernel \r on an \m" &gt;&gt; /etc/issue<br />
echo `ifconfig eth0 | grep inet | cut -d : -f 2 | cut -d \  -f 1` &gt;&gt; /etc/issue</code></p>
<p>Getting an ip part can be modified to check another adapter such as eth1, eth2, etc.  Or you can get it another way if you want.  That all there is too.  <span style="text-decoration: line-through;">Reboot, and you should see your changes.</span></p>
<p>[correction 4.24.08] you do not have to reboot to see your changes.  Just press enter at the login prompt in console and it will re-read the issue file.</p>
<p>————————————-<br />
<small>DISCLAIMER: Please be smart and use code found on internet carefully. Make backups often. And yeah.. last but not least.. I am not responsible for any damage caused by this posting. <strong>Use at your own risk</strong>.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://crazytoon.com/2008/04/22/linux-how-to-change-login-prompt-in-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Samba: How do you install and set up Samba in linux? [Redhat Enterprise(RHEL), CentOS, Fedora]</title>
		<link>http://crazytoon.com/2007/05/22/samba-how-do-you-install-and-set-up-samba-in-linux-redhat-enterpriserhel-centos-fedora/</link>
		<comments>http://crazytoon.com/2007/05/22/samba-how-do-you-install-and-set-up-samba-in-linux-redhat-enterpriserhel-centos-fedora/#comments</comments>
		<pubDate>Tue, 22 May 2007 19:38:59 +0000</pubDate>
		<dc:creator>Sunny Walia</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Enterprise level solutions]]></category>
		<category><![CDATA[Linux System]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Redhat]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[System admin]]></category>

		<guid isPermaLink="false">http://crazytoon.com/2007/05/22/samba-how-do-you-install-and-set-up-samba-in-linux-redhat-enterpriserhel-centos-fedora/</guid>
		<description><![CDATA[Setting up Samba &#8220;can&#8221; be complicated at times.  Especially if you are looking for instructions online where there are WAY too many tutorials which go in to details about what configuration does what, etc.  Well, this post is nothing like that.  Here I just show you quick and easy way to install [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up Samba &#8220;can&#8221; be complicated at times.  Especially if you are looking for instructions online where there are WAY too many tutorials which go in to details about what configuration does what, etc.  Well, this post is nothing like that.  Here I just show you quick and easy way to install Samba, configure it, and set up the drive letter on your XP/Vista.  NOTE:  for using Samba with Vista, please see my previous post in which I talk about changing settings in Vista so you can connect to your Samba share:  <a href="http://crazytoon.com/2007/02/05/windows-vista-installation-update-2/" title="Fix Samba drive mapping issue">Windows Vista Installation</a></p>
<p>NOTE:  This set up is very &#8220;open&#8221;  and should not be used on servers which are facing the world.  This is for private network where you trust all the computers and its users.</p>
<p>Installing Samba (using yum on CentOS and Fedora):  yum install samba<br />
Installing Samba (using rpm):</p>
<ol>
<li>Obtain Samba rpm from rhn.redhat.com</li>
<li>rpm -ivh samba*.rpm</li>
</ol>
<p>Configuring Samba:<br />
<code>cd /etc/samba<br />
mv smb.conf smb.conf.backup<br />
vi smb.conf</code></p>
<p>Paste content below in to your vi:</p>
<p><code>[global]<br />
workgroup = wrkgrp<br />
netbios name = smbserver<br />
security = SHARE<br />
load printers = No<br />
default service = global<br />
path = /home<br />
available = No<br />
encrypt passwords = yes<br />
[share]<br />
writeable = yes<br />
admin users = smbuser<br />
path = /home/share<br />
force user = root<br />
valid users = smbuser<br />
public = yes<br />
available = yes</code></p>
<p>save and exit</p>
<p><code>adduser smbuser       #add unix account<br />
passwd smbuser          #set unix account password<br />
smbpasswd -a smbuser #lets create same user account on samba<br />
&lt;put same password as your unix account password&gt;<br />
/etc/init.d/smb restart</code></p>
<p>Now let us setup drive letter on our Windows so we can easily access these files.</p>
<p>Start -&gt; run -&gt; cmd &lt;enter&gt;</p>
<p>At the prompt type:  net use z: \\ip_of_your_samba_server\share /user: smbuser password_you_assigned</p>
<p>That is it!  At this point you have successfully set up Samba under Linux and are now successfully connected to your share from your Windows machine.</p>
]]></content:encoded>
			<wfw:commentRss>http://crazytoon.com/2007/05/22/samba-how-do-you-install-and-set-up-samba-in-linux-redhat-enterpriserhel-centos-fedora/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>TIP:  How do I rename multiple files to another extension?</title>
		<link>http://crazytoon.com/2007/05/02/tip-how-do-i-rename-multiple-files-to-another-extension/</link>
		<comments>http://crazytoon.com/2007/05/02/tip-how-do-i-rename-multiple-files-to-another-extension/#comments</comments>
		<pubDate>Wed, 02 May 2007 21:50:25 +0000</pubDate>
		<dc:creator>Sunny Walia</dc:creator>
				<category><![CDATA[Enterprise level solutions]]></category>
		<category><![CDATA[Linux System]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Notes for self]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[System admin]]></category>

		<guid isPermaLink="false">http://crazytoon.com/2007/05/02/tip-how-do-i-rename-multiple-files-to-another-extension/</guid>
		<description><![CDATA[Let us say that you want to rename all of your &#8220;.php3&#8243; files to &#8220;.php&#8221; files.  How you do this with minimal effort?   Answer lies in for loop.
for old in *.php3; do cp $old `basename $old .php3`.php; done
Thats all there is to it.  Let us say you need to rename index.php3 [...]]]></description>
			<content:encoded><![CDATA[<p>Let us say that you want to rename all of your &#8220;.php3&#8243; files to &#8220;.php&#8221; files.  How you do this with minimal effort?   Answer lies in for loop.</p>
<p><code>for old in *.php3; do cp $old `basename $old .php3`.php; done</code></p>
<p>Thats all there is to it.  Let us say you need to rename index.php3 to index.php.  The way above snippet works is that it loops through current directory and finds all the files with extension &#8220;.php3&#8243; and processes &#8216;em one by one.  In our index.php3 file example, it finds index.php3 file, does a cp index.php3 `basename index.php3 .php3`.php &lt;- basename returns &#8220;index&#8221; so you add .php to it and now you are left with index.php.  Of course you can do mv command if you want to just move the file to new name.  I would suggest doing cp first to make sure things work the way you want &#8216;em to.</p>
]]></content:encoded>
			<wfw:commentRss>http://crazytoon.com/2007/05/02/tip-how-do-i-rename-multiple-files-to-another-extension/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Green America:  Things you can do to make world more green and in the proccess save money</title>
		<link>http://crazytoon.com/2007/04/23/green-america-things-you-can-do-make-world-more-green-and-in-proccess-save-money/</link>
		<comments>http://crazytoon.com/2007/04/23/green-america-things-you-can-do-make-world-more-green-and-in-proccess-save-money/#comments</comments>
		<pubDate>Mon, 23 Apr 2007 10:38:37 +0000</pubDate>
		<dc:creator>Sunny Walia</dc:creator>
				<category><![CDATA[Earth Day]]></category>
		<category><![CDATA[Green America]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Quick Tips]]></category>

		<guid isPermaLink="false">http://crazytoon.com/2007/04/23/green-america-things-you-can-do-make-world-more-green-and-in-proccess-save-money/</guid>
		<description><![CDATA[There are many things we can do on daily basis which can make our lives better and make future better for our kids and ourselves.  Most of these things are overlooked or not stressed enough.  Lets start with cheap way to save some money and make world a better place.

Replace all the bulbs [...]]]></description>
			<content:encoded><![CDATA[<p>There are many things we can do on daily basis which can make our lives better and make future better for our kids and ourselves.  Most of these things are overlooked or not stressed enough.  Lets start with <em>cheap</em> way to save some money and make world a better place.</p>
<ol>
<li>Replace all the bulbs in your house with energy savings one.  Energy savings bulbs will save you upto 70% in utility bills and at the same time help out to make world greener by using less electricity.</li>
<li>Unplug appliances which are not in use.  Even some of the chargers like your laptop charger, consumes some energy while plugged in to outlet even when there is nothing is plugged in the other side.  That home entertainment system or just a cable box you have sitting around, consumes energy.  All this could add upto significant $$&#8217;s.  One of the products worth looking at:  <a href="http://www.smarthomeusa.com/Shop/Bits-Ltd./Item/LCG4/" title="Smart Strip Power Strip">Smart Strip Power Strip</a></li>
<li>If you can afford to and have a house, put solar panels on your roof.  Even though this is sort of an expensive way to go but in long (or short, depends on costs etc.) run it can save you money an maybe even make you some money.   You can also depreciate this investment just like any other investments.  Talk to your tax adviser for more details on tax credits.  You can read more details about return on your investment at: <a href="http://www.motherearthnews.com/Alternative-Energy/2006-10-01/You-Can-Afford-Solar-Power.aspx" title="Afford solar power" target="_blank">motherearthnews.com</a><a href="http://www.motherearthnews.com/Alternative-Energy/2006-10-01/You-Can-Afford-Solar-Power.aspx" target="_blank"></a></li>
<li>Windmills.  Yeah..not the coolest thing around but if you are living in an area with lots of yard space and do qualify to put windmills there, its worth looking into.</li>
<li>Buy hybrids!  Not only that you get some tax credit for buying hybrids, you can also pay A LOT less on gas stations.  Of course there are many more alternatives then hybrids.  You can also buy electric cars, cars which run on ethanol (<a href="http://www.msnbc.msn.com/id/11603199/" title="Green machines" target="_blank">http://www.msnbc.msn.com/id/11603199/</a>) and cars which are powered by solar energy.   Hybrid seems to be more mainstream choice even though for short commutes electric cars make more sense.  One of the car I know of is <a href="http://www.teslamotors.com/" title="Tesla Motors">Tesla Roadster</a> which by no means is a cheap car!  It could cost you are $100k to buy this puppy but before you say anything, check out the specs.  You also have to wait until next year to get it so <em>maybe</em> that is too much a turn off and you rather have one of the many available hybrids.</li>
<li>Use less paper!  Opt in for online statements. This alone will save a lot paper and in turn will protect the trees!  Other places you can cut back would be at your work.   Ask for your paystubs electronically instead of paper.  You really don&#8217;t need a piece of paper to see how much you made.  But if you really want to, just log in to the website and look.  File your taxes via computer using e-file.  All these are little things which does not make our life harder but helps with making sure we are not destroying our nature!</li>
<li>Use recycled material!  Promote recycling.  Ask for recycling at your work, your apartment, church, where ever you can!</li>
<li>Paper or plastic?  ALWAYS pick paper.  Plastic bags are VERY hard to recycle.</li>
<li>If you live close to stores, work or any other destinations, walk there instead of driving.  You save on some pollution and at the same time its good for you to go for walk.</li>
<li>Make your home energy efficient.  There are many ways to make this happen.  Of course you are already doing #1 by now, right?  Other ways would be to buy appliances which qualify.  Install windows which insulate your house better.  Put insulation in the outside walls.  All these will make it so you don&#8217;t use all that electricity you are producing by following #3.  Which in turn means you are pumping electricity back in the power grid and making some money from doing it!</li>
</ol>
<p>This list is very brief but should be enough to get you started and thinking about things you can do to make this world a better place to live!  Please feel free to add comments with your own suggestions, comments, etc.<br />
<small>Tagged as mysql so hopefully more people can benefit from this</small></p>
]]></content:encoded>
			<wfw:commentRss>http://crazytoon.com/2007/04/23/green-america-things-you-can-do-make-world-more-green-and-in-proccess-save-money/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>/bin/rm: Argument list too long</title>
		<link>http://crazytoon.com/2007/04/04/binrm-argument-list-too-long/</link>
		<comments>http://crazytoon.com/2007/04/04/binrm-argument-list-too-long/#comments</comments>
		<pubDate>Wed, 04 Apr 2007 17:34:28 +0000</pubDate>
		<dc:creator>Sunny Walia</dc:creator>
				<category><![CDATA[Linux System]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Notes for self]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[System admin]]></category>

		<guid isPermaLink="false">http://crazytoon.com/2007/04/04/binrm-argument-list-too-long/</guid>
		<description><![CDATA[You type:  rm * -f
You get:   /bin/rm: Argument list too long
Reason:  in shell when you do * after rm and get Argument list too long, your shell actually expands that * and puts all the filenames after rm and since length of the command line is limited, you end up getting [...]]]></description>
			<content:encoded><![CDATA[<p>You type:  rm * -f<br />
You get:   <strong>/bin/rm: Argument list too long</strong><br />
Reason:  in shell when you do * after rm and get Argument list too long, your shell actually expands that * and puts all the filenames after rm and since length of the command line is limited, you end up getting <strong>argument list too long</strong>.</p>
<p>Possible solutions:</p>
<ol>
<li>You can remove the whole directory and recreate the directory</li>
<li>When 1 is not an option, you can you &#8220;find&#8221; to delete for you.  I actually use this method more often then removing/creating directory.<br />
<code>find . -exec rm {} \;</code> This will delete everything in current directory on.  Be careful with this command since you could potentially delete things you may not wanted to.  I suggest running <code> find . |more </code> first to see what will be affected.  To read more about find see:  <a href="http://www.lamp-tips.com/man-pages/find/" title="man find - man page for find" target="_blank">man find</a></li>
</ol>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
<small>DISCLAIMER:  Please be smart and use code found on internet carefully.  Make backups often.  And yeah.. last but not least.. I am not responsible for any damage caused by this posting.  <strong>Use at your own risk</strong>.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://crazytoon.com/2007/04/04/binrm-argument-list-too-long/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
