please help me. I have string (all times changing, not constant) like this :
id1 name1 key1
id2 name2 key2
id3 name3 key3
...
how using bash i can put's this values to two-dimensional array?
in result for example having :
array[1][1] -> id1
array[1][2] -> name1
array[1][3] -> key1
array[2][1] -> id2
array[2][2] -> name2
...
TY for the help