<?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: Shell Script Execution Guidelines for Newbies</title>
	<atom:link href="http://www.thegeekstuff.com/2010/01/shell-script-execution-guidelines-for-newbies/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thegeekstuff.com/2010/01/shell-script-execution-guidelines-for-newbies/</link>
	<description>Guides, HowTos and Tips for Technology Geeks</description>
	<lastBuildDate>Thu, 09 Feb 2012 11:52:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: 4 Ways of Executing a Shell Script in UNIX / Linux</title>
		<link>http://www.thegeekstuff.com/2010/01/shell-script-execution-guidelines-for-newbies/comment-page-1/#comment-54976</link>
		<dc:creator>4 Ways of Executing a Shell Script in UNIX / Linux</dc:creator>
		<pubDate>Tue, 20 Jul 2010 06:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=2718#comment-54976</guid>
		<description>[...] If you have the shebang, then it will be executed using the command interpreter specified in the shebang. If you are beginner in shell scripting, refer our earlier article Shell Script Execution Guidelines for Newbies [...]</description>
		<content:encoded><![CDATA[<p>[...] If you have the shebang, then it will be executed using the command interpreter specified in the shebang. If you are beginner in shell scripting, refer our earlier article Shell Script Execution Guidelines for Newbies [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bash Scripting Introduction Tutorial with 5 Practical Examples</title>
		<link>http://www.thegeekstuff.com/2010/01/shell-script-execution-guidelines-for-newbies/comment-page-1/#comment-37460</link>
		<dc:creator>Bash Scripting Introduction Tutorial with 5 Practical Examples</dc:creator>
		<pubDate>Wed, 03 Mar 2010 06:04:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=2718#comment-37460</guid>
		<description>[...] Execute the script as shown below. If you have any issues executing a shell script, refer to shell script execution tutorial [...]</description>
		<content:encoded><![CDATA[<p>[...] Execute the script as shown below. If you have any issues executing a shell script, refer to shell script execution tutorial [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramesh Natarajan</title>
		<link>http://www.thegeekstuff.com/2010/01/shell-script-execution-guidelines-for-newbies/comment-page-1/#comment-32098</link>
		<dc:creator>Ramesh Natarajan</dc:creator>
		<pubDate>Tue, 02 Feb 2010 07:52:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=2718#comment-32098</guid>
		<description>@Ulrich,

Thanks for explaining about -v and -x. That is definitely a great tip for newbies.

@Abhilash,

I&#039;m glad you liked this article. Thanks for the suggestion. I&#039;ll write few additional articles about bash shell scripting fundamentals.

@Oso,

Thanks for your comment.</description>
		<content:encoded><![CDATA[<p>@Ulrich,</p>
<p>Thanks for explaining about -v and -x. That is definitely a great tip for newbies.</p>
<p>@Abhilash,</p>
<p>I&#8217;m glad you liked this article. Thanks for the suggestion. I&#8217;ll write few additional articles about bash shell scripting fundamentals.</p>
<p>@Oso,</p>
<p>Thanks for your comment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oso</title>
		<link>http://www.thegeekstuff.com/2010/01/shell-script-execution-guidelines-for-newbies/comment-page-1/#comment-30907</link>
		<dc:creator>Oso</dc:creator>
		<pubDate>Mon, 25 Jan 2010 19:28:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=2718#comment-30907</guid>
		<description>you can add a /bin directory to your home and put your executables there and type the name of the command anywhere</description>
		<content:encoded><![CDATA[<p>you can add a /bin directory to your home and put your executables there and type the name of the command anywhere</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abhilash</title>
		<link>http://www.thegeekstuff.com/2010/01/shell-script-execution-guidelines-for-newbies/comment-page-1/#comment-30560</link>
		<dc:creator>Abhilash</dc:creator>
		<pubDate>Fri, 22 Jan 2010 16:26:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=2718#comment-30560</guid>
		<description>Hello Ramesh,

Thank you for your guidence of this. We will expect next level of script.. Please give us some more basic looping and branching too..</description>
		<content:encoded><![CDATA[<p>Hello Ramesh,</p>
<p>Thank you for your guidence of this. We will expect next level of script.. Please give us some more basic looping and branching too..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ulrich Hiller</title>
		<link>http://www.thegeekstuff.com/2010/01/shell-script-execution-guidelines-for-newbies/comment-page-1/#comment-30512</link>
		<dc:creator>Ulrich Hiller</dc:creator>
		<pubDate>Fri, 22 Jan 2010 09:44:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=2718#comment-30512</guid>
		<description>Another helpful hint for newbies would be imho the debugging option, especially if you have longer scripts with variables and fields:
-v for verbose
-x for &quot;Print commands and their arguments as they are executed&quot;
e.g.: bash -xv helloworld.sh
        sh -xv helloworld.sh
        csh -xv helloworld.sh
        ksh -xv helloworld.sh</description>
		<content:encoded><![CDATA[<p>Another helpful hint for newbies would be imho the debugging option, especially if you have longer scripts with variables and fields:<br />
-v for verbose<br />
-x for &#8220;Print commands and their arguments as they are executed&#8221;<br />
e.g.: bash -xv helloworld.sh<br />
        sh -xv helloworld.sh<br />
        csh -xv helloworld.sh<br />
        ksh -xv helloworld.sh</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Content Delivery Network via Amazon Web Services: CloudFront: static.thegeekstuff.com

Served from: www.thegeekstuff.com @ 2012-02-09 13:06:43 -->
