Defining Array Values: "Zara" "Qadir" "Mahnaz" "Ayan" "Daisy"
Defining Array Values: "Zara" "Qadir" "Mahnaz" "Ayan" "Daisy"
A shell variable is
capable enough to hold a single value. These variables are called scalar variables.
Shell supports a different type of variable called an array variable. This can hold
multiple values at the same time. Arrays provide a method of grouping a set of
variables. Instead of creating a new name for each variable that is required, you can
use a single array variable that stores all the other variables.
All the naming rules discussed for Shell Variables would be applicable while naming
arrays.
We can use a single array to store all the above mentioned names. Following is the
simplest method of creating an array variable. This helps assign a value to one of its
indices.
array_name[index]=value
Here array_name is the name of the array, index is the index of the item in the array
that you want to set, and value is the value you want to set for that item.
As an example, the following commands −
NAME[0]="Zara"
NAME[1]="Qadir"
NAME[2]="Mahnaz"
NAME[3]="Ayan"
NAME[4]="Daisy"