How to add another array like the output below?
I am using while loop to read the file
while read i
do
echo "outer $i"
done < ./aaaaa
First Array (Content inside my file aaaaa)
abc
def
ghi
Second Array
1
2
3
The Output I want
abc1
def2
ghi3
Is this called multi-dimension array?
Thank you very much