May 2018
Beginner
332 pages
7h 28m
English
Once we have initialized an array, we can access it, as follows:
${array_name[index]}
Create script array_01.sh, as follows:
#!/bin/bash
FRUIT[0]="Pear"
FRUIT[1]="Apple"
FRUIT[2]="Mango"
FRUIT[3]="Banana"
FRUIT[4]="Papaya"
echo "First Index: ${FRUIT[0]}"
echo "Second Index: ${FRUIT[1]}"
The output is as follows:
$ chmod +x array_01.sh$./array_01.shFirst Index: PearSecond Index: Apple
To display all the items from the array, use the following commands:
${FRUIT[*]}${FRUIT[@]}
Create script array_02.sh, as follows:
#!/bin/bash
FRUIT[0]="Pear"
FRUIT[1]="Apple"
FRUIT[2]="Mango"
FRUIT[3]="Banana"
FRUIT[4]="Papaya"
echo "Method One : ${FRUIT[*]}"
echo "Method Two : ${FRUIT[@]}"
The output is as follows:
$ chmod +x array_02.sh ...