<?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: 10 Useful &#8216;Interview Questions and Answers&#8217; on Linux Shell Scripting	</title>
	<atom:link href="https://www.tecmint.com/interview-questions-on-shell-scripting/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/interview-questions-on-shell-scripting/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Sun, 17 Feb 2019 11:18:12 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Tomas Raulickis		</title>
		<link>https://www.tecmint.com/interview-questions-on-shell-scripting/comment-page-1/#comment-1102401</link>

		<dc:creator><![CDATA[Tomas Raulickis]]></dc:creator>
		<pubDate>Sun, 17 Feb 2019 11:18:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=7068#comment-1102401</guid>

					<description><![CDATA[I&#039;ve found a little mistake in the 8th question about cut command.

In the first example, the &lt;code&gt;-c&lt;/code&gt; option is used and it extracts characters not columns as stated.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve found a little mistake in the 8th question about cut command.</p>
<p>In the first example, the <code>-c</code> option is used and it extracts characters not columns as stated.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ankit		</title>
		<link>https://www.tecmint.com/interview-questions-on-shell-scripting/comment-page-1/#comment-945661</link>

		<dc:creator><![CDATA[Ankit]]></dc:creator>
		<pubDate>Thu, 07 Dec 2017 13:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=7068#comment-945661</guid>

					<description><![CDATA[Can I ask shell scripting related questions on your site and if not then can you suggest me some other good sites?]]></description>
			<content:encoded><![CDATA[<p>Can I ask shell scripting related questions on your site and if not then can you suggest me some other good sites?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sudhakar amineni		</title>
		<link>https://www.tecmint.com/interview-questions-on-shell-scripting/comment-page-1/#comment-926668</link>

		<dc:creator><![CDATA[Sudhakar amineni]]></dc:creator>
		<pubDate>Wed, 25 Oct 2017 01:11:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=7068#comment-926668</guid>

					<description><![CDATA[Yes As said above by Zess, ls command is used for to see list of files.

Its wrong what you mentioned here]]></description>
			<content:encoded><![CDATA[<p>Yes As said above by Zess, ls command is used for to see list of files.</p>
<p>Its wrong what you mentioned here</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: strangelove		</title>
		<link>https://www.tecmint.com/interview-questions-on-shell-scripting/comment-page-1/#comment-906764</link>

		<dc:creator><![CDATA[strangelove]]></dc:creator>
		<pubDate>Wed, 16 Aug 2017 05:41:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=7068#comment-906764</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/interview-questions-on-shell-scripting/comment-page-1/#comment-695740&quot;&gt;Siddarth&lt;/a&gt;.

I&#039;m a bit late to the party, but something more concise might be:
&lt;pre&gt;
i=1
until [ $i -gt 6 ];
do
  printf &quot;%d %d %d %d\n&quot; $i $((i+1)) $((i+2)) $((i+3))
  : $((i++))
done
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/interview-questions-on-shell-scripting/comment-page-1/#comment-695740">Siddarth</a>.</p>
<p>I&#8217;m a bit late to the party, but something more concise might be:</p>
<pre>
i=1
until [ $i -gt 6 ];
do
  printf "%d %d %d %d\n" $i $((i+1)) $((i+2)) $((i+3))
  : $((i++))
done
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Warron French		</title>
		<link>https://www.tecmint.com/interview-questions-on-shell-scripting/comment-page-1/#comment-869449</link>

		<dc:creator><![CDATA[Warron French]]></dc:creator>
		<pubDate>Mon, 20 Feb 2017 02:06:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=7068#comment-869449</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/interview-questions-on-shell-scripting/comment-page-1/#comment-774104&quot;&gt;zen&lt;/a&gt;.

The way the question was asked wasn&#039;t very clearly stated to accomplish the use of the command &lt;strong&gt;ls&lt;/strong&gt; and &lt;strong&gt;echo&lt;/strong&gt; to answer it in the affirmative and explain.

The question should have been, &quot;Is it possible to list the file and directory names of a given &#039;parent directory&#039; using a command other than &#039;&lt;strong&gt;ls&lt;/strong&gt;?&#039;&quot;

Yes, the use of &quot;&lt;strong&gt;echo *&lt;/strong&gt;&quot; will perform the equivalent of a plain &quot;&lt;strong&gt;ls&lt;/strong&gt;.&quot;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/interview-questions-on-shell-scripting/comment-page-1/#comment-774104">zen</a>.</p>
<p>The way the question was asked wasn&#8217;t very clearly stated to accomplish the use of the command <strong>ls</strong> and <strong>echo</strong> to answer it in the affirmative and explain.</p>
<p>The question should have been, &#8220;Is it possible to list the file and directory names of a given &#8216;parent directory&#8217; using a command other than &#8216;<strong>ls</strong>?'&#8221;</p>
<p>Yes, the use of &#8220;<strong>echo *</strong>&#8221; will perform the equivalent of a plain &#8220;<strong>ls</strong>.&#8221;</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
