<?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: Working with Arrays in Linux Shell Scripting – Part 8	</title>
	<atom:link href="https://www.tecmint.com/working-with-arrays-in-linux-shell-scripting/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/working-with-arrays-in-linux-shell-scripting/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Sun, 04 Sep 2022 10:00:48 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Nitin		</title>
		<link>https://www.tecmint.com/working-with-arrays-in-linux-shell-scripting/comment-page-1/#comment-1872485</link>

		<dc:creator><![CDATA[Nitin]]></dc:creator>
		<pubDate>Sun, 04 Sep 2022 10:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=6536#comment-1872485</guid>

					<description><![CDATA[will you please provide a solution to this?

Take a range from 0 - 100, find the digits that are repeated twice like 33, 77, etc and store them in an array.]]></description>
			<content:encoded><![CDATA[<p>will you please provide a solution to this?</p>
<p>Take a range from 0 &#8211; 100, find the digits that are repeated twice like 33, 77, etc and store them in an array.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: swww		</title>
		<link>https://www.tecmint.com/working-with-arrays-in-linux-shell-scripting/comment-page-1/#comment-931079</link>

		<dc:creator><![CDATA[swww]]></dc:creator>
		<pubDate>Sat, 04 Nov 2017 18:58:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=6536#comment-931079</guid>

					<description><![CDATA[Good collection of examples, especially command output assigning is nice. I wrote somewhat similar but more extensive article on arrays in BASH. Check it out here: wojnowski.net.pl/main/index/arrays-in-bash.

Regards]]></description>
			<content:encoded><![CDATA[<p>Good collection of examples, especially command output assigning is nice. I wrote somewhat similar but more extensive article on arrays in BASH. Check it out here: wojnowski.net.pl/main/index/arrays-in-bash.</p>
<p>Regards</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: kumar		</title>
		<link>https://www.tecmint.com/working-with-arrays-in-linux-shell-scripting/comment-page-1/#comment-898116</link>

		<dc:creator><![CDATA[kumar]]></dc:creator>
		<pubDate>Mon, 03 Jul 2017 23:49:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=6536#comment-898116</guid>

					<description><![CDATA[Hi,

I want print only first and third element of the array.

what is the &lt;a href=&quot;https://www.tecmint.com/echo-command-in-linux/&quot; target=&quot;_blank&quot;&gt;echo command&lt;/a&gt;?]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I want print only first and third element of the array.</p>
<p>what is the <a target="_blank" href="https://www.tecmint.com/echo-command-in-linux/" target="_blank">echo command</a>?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anoop C S		</title>
		<link>https://www.tecmint.com/working-with-arrays-in-linux-shell-scripting/comment-page-1/#comment-801340</link>

		<dc:creator><![CDATA[Anoop C S]]></dc:creator>
		<pubDate>Fri, 22 Jul 2016 06:26:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=6536#comment-801340</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/working-with-arrays-in-linux-shell-scripting/comment-page-1/#comment-795801&quot;&gt;Gulab&lt;/a&gt;.

Hi Gulab,

Sorry for being late..Got stuck with some other work. I would assume that by this time you might have found an answer to your question. Anyway following is my pov.

You can always insert elements into array by referring to the index numbers as I have mentioned in the article. By run time if you mean to have some kind of looping, then you could increment index number for the array within the loop and insert elements one by one. Checking for directory existence is not at all a complex task and you have various methods to do so (easy way: use if conditional statement with test expression parameter -d).]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/working-with-arrays-in-linux-shell-scripting/comment-page-1/#comment-795801">Gulab</a>.</p>
<p>Hi Gulab,</p>
<p>Sorry for being late..Got stuck with some other work. I would assume that by this time you might have found an answer to your question. Anyway following is my pov.</p>
<p>You can always insert elements into array by referring to the index numbers as I have mentioned in the article. By run time if you mean to have some kind of looping, then you could increment index number for the array within the loop and insert elements one by one. Checking for directory existence is not at all a complex task and you have various methods to do so (easy way: use if conditional statement with test expression parameter -d).</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gulab		</title>
		<link>https://www.tecmint.com/working-with-arrays-in-linux-shell-scripting/comment-page-1/#comment-795801</link>

		<dc:creator><![CDATA[Gulab]]></dc:creator>
		<pubDate>Mon, 27 Jun 2016 13:34:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=6536#comment-795801</guid>

					<description><![CDATA[how to import multiple directory in array(run time log /var/log/ ) in runtime and check if directory is present or not ?]]></description>
			<content:encoded><![CDATA[<p>how to import multiple directory in array(run time log /var/log/ ) in runtime and check if directory is present or not ?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
