<?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>TutorBoy Articles &#187; Shell</title>
	<atom:link href="http://articles.tutorboy.com/topics/shell/feed" rel="self" type="application/rss+xml" />
	<link>http://articles.tutorboy.com</link>
	<description>Online Complete Reference</description>
	<lastBuildDate>Mon, 06 Sep 2010 07:04:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>What are the differences in die() and exit() in PHP?</title>
		<link>http://articles.tutorboy.com/php/what-are-the-differences-in-die-and-exit-in-php.html</link>
		<comments>http://articles.tutorboy.com/php/what-are-the-differences-in-die-and-exit-in-php.html#comments</comments>
		<pubDate>Sun, 29 Nov 2009 16:56:02 +0000</pubDate>
		<dc:creator>Midhun Devasia</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[Functions]]></category>

		<guid isPermaLink="false">http://tutorboy.com/articles/?p=534</guid>
		<description><![CDATA[Ooops!!! there is no difference in die() and exit(). die() is equivalent to exit  and vice versa. But  why these two names because of there are functions which changed names because of an API cleanup or some other reason and &#8230; <a href="http://articles.tutorboy.com/php/what-are-the-differences-in-die-and-exit-in-php.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ooops!!! there is no difference in die() and exit(). die() is equivalent to exit  and vice versa. But  why these two names because of there are functions which changed names because of an API   cleanup or some other reason and the old names are only kept as   aliases for backward compatibility. <img src='http://articles.tutorboy.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<h2>php.net says</h2>
<blockquote><p>There are quite a few functions in PHP which you can call with more   than one name. In some cases there is no preferred name among the   multiple ones, <a class="function" href="http://www.php.net/manual/en/function.is-int.php">is_int()</a> and   <a class="function" href="http://www.php.net/manual/en/function.is-integer.php">is_integer()</a> are equally good for example.   However there are functions which changed names because of an API   cleanup or some <span id="more-534"></span>other reason and the old names are only kept as   aliases for backward compatibility. It is usually a bad idea to use   these kind of aliases, as they may be bound to obsolescence or   renaming, which will lead to unportable script. This list is provided   to help those who want to upgrade their old scripts to newer syntax.</p></blockquote>
<h3>References</h3>
<p><a title="http://php.net/manual/en/aliases.php" href="http://php.net/manual/en/aliases.php" target="_blank">http://php.net/manual/en/aliases.php</a><br />
<a title="http://www.php.net/manual/en/ref.misc.php" href="http://www.php.net/manual/en/ref.misc.php" target="_blank"> http://www.php.net/manual/en/ref.misc.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://articles.tutorboy.com/php/what-are-the-differences-in-die-and-exit-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using wget command to download entire contents inside the directory</title>
		<link>http://articles.tutorboy.com/shell/using-wget-command-to-download-entire-contents-inside-the-directory.html</link>
		<comments>http://articles.tutorboy.com/shell/using-wget-command-to-download-entire-contents-inside-the-directory.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 09:40:50 +0000</pubDate>
		<dc:creator>Arun C P</dc:creator>
				<category><![CDATA[Shell]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://tutorboy.com/articles/?p=433</guid>
		<description><![CDATA[Using wget command, to download entire contents inside the directory. This can be achieved by using the option -m with wget for example: wget -m http://download.inhouse.net/mag_cd/linux4u/Dec06/app_server/jboss/ It will download all the files/folders inside the directory jboss -r, –recursive Specify recursive &#8230; <a href="http://articles.tutorboy.com/shell/using-wget-command-to-download-entire-contents-inside-the-directory.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Using wget command, to download entire contents inside the directory.</p>
<p>This can be achieved by using the option -m with wget</p>
<p>for example:</p>
<pre class="brush:bash">wget -m http://download.inhouse.net/mag_cd/linux4u/Dec06/app_server/jboss/</pre>
<p>It will download all the files/folders inside the directory jboss</p>
<p>-r, –recursive Specify recursive download.<br />
<span id="more-433"></span><br />
-l, –level=NUMBER Maximum recursion depth (inf or 0 for infinite).</p>
<p>-k, –convert-links Make links in downloaded HTML point to local files.</p>
<p>-p, –page-requisites Get all images, etc. needed to display HTML page.</p>
]]></content:encoded>
			<wfw:commentRss>http://articles.tutorboy.com/shell/using-wget-command-to-download-entire-contents-inside-the-directory.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install SciTE On Ubuntu</title>
		<link>http://articles.tutorboy.com/shell/install-scite-on-ubuntu.html</link>
		<comments>http://articles.tutorboy.com/shell/install-scite-on-ubuntu.html#comments</comments>
		<pubDate>Sat, 31 Oct 2009 10:44:02 +0000</pubDate>
		<dc:creator>Midhun Devasia</dc:creator>
				<category><![CDATA[Shell]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://tutorboy.com/articles/?p=380</guid>
		<description><![CDATA[To install SciTE editor on Ubuntu. sudo apt-get install scite]]></description>
			<content:encoded><![CDATA[<p>To install SciTE editor on Ubuntu.</p>
<pre class="class:bash">sudo apt-get install scite</pre>
]]></content:encoded>
			<wfw:commentRss>http://articles.tutorboy.com/shell/install-scite-on-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To Find Your Current Shell  Type</title>
		<link>http://articles.tutorboy.com/shell/to-find-your-current-shell-type.html</link>
		<comments>http://articles.tutorboy.com/shell/to-find-your-current-shell-type.html#comments</comments>
		<pubDate>Tue, 27 Oct 2009 19:09:23 +0000</pubDate>
		<dc:creator>Midhun Devasia</dc:creator>
				<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://tutorboy.com/articles/?p=375</guid>
		<description><![CDATA[Tip: To find your current shell type following command Shell Command $ echo $SHELL]]></description>
			<content:encoded><![CDATA[<p><strong>Tip</strong>: To find your current shell type following command</p>
<h1>Shell Command</h1>
<pre class="class:bash">
$ echo $SHELL
</pre>
]]></content:encoded>
			<wfw:commentRss>http://articles.tutorboy.com/shell/to-find-your-current-shell-type.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To Find All Available Shells In Your System</title>
		<link>http://articles.tutorboy.com/shell/to-find-all-available-shells-in-your-system.html</link>
		<comments>http://articles.tutorboy.com/shell/to-find-all-available-shells-in-your-system.html#comments</comments>
		<pubDate>Tue, 27 Oct 2009 18:55:04 +0000</pubDate>
		<dc:creator>Midhun Devasia</dc:creator>
				<category><![CDATA[Shell]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://tutorboy.com/articles/?p=366</guid>
		<description><![CDATA[Tip: To find all available shells in your system type following command: Shell Command: $ cat /etc/shells Output: [blackperl@tutorboy ~]$ cat /etc/shells /bin/sh /bin/bash /sbin/nologin /bin/tcsh /bin/csh /bin/zsh [blackperl@tutorboy ~]$]]></description>
			<content:encoded><![CDATA[<p><strong><em>Tip:</em></strong> To find all available shells in your system type following command:</p>
<h2>Shell Command:</h2>
<pre class="brush:bash">$ cat /etc/shells
</pre>
<p><span id="more-366"></span></p>
<h2>Output:</h2>
<pre class="brush:bash">
[blackperl@tutorboy ~]$ cat /etc/shells
/bin/sh
/bin/bash
/sbin/nologin
/bin/tcsh
/bin/csh
/bin/zsh
[blackperl@tutorboy ~]$</pre>
]]></content:encoded>
			<wfw:commentRss>http://articles.tutorboy.com/shell/to-find-all-available-shells-in-your-system.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
