How to read file line by line and store each line value in different array variable. For example file.txt contains below lines:
abc;2;1;3;4;5;6;7
cba;1;2;3;4;5;6;7;8;9;
......
.......
So I need to read line by line and store each line value seprated by delimeter in different variable. Like for line 1
arr[0]=abc, arr[1]=2, arr[2]=1 and so on
and after reading first line it will read line 2 and store its value like:
arr[0]=cba, arr[1]=1, arr[2]=2 and so on
I have tried below code
while read line
do
arr+=("$line")
done <$file
for ((i=0; i < ${#arr[*]}; i++))
do
echo "${arr[i]}"
done
But in this case I am getting whole line by line in arr[i]. I need to store this value of line in seprate variable as mentioned above.