0 votes
in Shell Script by

How To Use Array In Shell Script?

   

1 Answer

0 votes
by Hot Users (2.3k points)

Only noteworthy in this program is the syntax for the usage of arrays.

Code:

echo "ENTER THE NO. OF ARRAY ELEMENTS"
read n
i=1
while [ $i -le n ]
 do 
   read a[$i]
   let i = $i + 1
 done

i=1
while [ $i -le n ]
 do 
   echo ${a[i]}
   let i = $i + 1
 done

 

by
How can we declare and create new arrays in bash?
by Hot Users (2.3k points)
The use of array variable structures can be invaluable. This recipe describes several methods for declaring arrays in bash scripts.


The following are methods for declaring arrays:
Code:
names=( Jennifer Tonya Anna Sadie )

This creates an array called names with four elements (Jennifer, Tonya, Anna, and Sadie).
Code:
names=( "John Smith" "Jane Doe" )

This creates two array elements, each containing a space.
Code:
colors[0] = red colors[3] = green colors[4] = blue

This declares three elements of an array using nonsequential index values and creates a sparse array (there are no array elements for index values 1 or 2).
Code:
filearray=( `cat filename | tr '\n' ' '`)

This example places the contents of the file filename into an array. The tr command converts newlines to spaces so that multiline files will be handled properly.
Code:
names=( "${names[@]}" "Molly" )

This example adds another element to an existing array names.

If anyone has other techniques for creating or adding to arrays, add a comment to this recipe and share the wealth!

Related questions

0 votes
1 answer 345 views
0 votes
1 answer 103 views
0 votes
0 answers 32 views
Welcome to Find4Answers.com

Where you can Ask Questions, Find Answers Or Receive Answers from other members of the community And Share in Social networking sites like facebook, linkedin, twitter.
3cx phone system bandar bola benches boiler business bóg chwilówka przez internet car car lease deals car leasing uk chwilówka przez internet zapewne company convey convey law complaints convey law reviews convey law service conveylaw cornwall cosmetic dentist data data recovery maidenhead data recovery nottingham deals deepika padukone deepika padukone hot design development dot net programming dzieje szybkie chwilówki electrician electrician manchester electricians emergency farm filmy bez limitu filmy bez limitów filmy online finlock finlock solutions general genral graduate jobs in london graduate jobs london gutters hard drive recovery heap http: www.seo-assist.in infrared sauna infrared sauna saunas inline skating installation jabong coupon java judi bola laptop recycling law law firm in leeds lease leasing led lights led bulbs leeds life insurance quotes log london manchester movies museums and art myntra coupon nikogo szybka chwilówka outsource link building personal porcelain veneers ramię szybkie chwilówki recovery seo seo agencies seo company seo company london seo services services solutions stair lifts steel synchronization szybka chwilówka przykład szybka chwilówka żaden szybkie chwilówki lekko thread tunnel lighting tymczasem chwilówki przez internet upvc windows manchester viagra kamagra videos vinyl flooring suppliers wait web design services london web development company window repairs london windows yebhi coupon zobaczyć szybka chwilówka
...