Используя bash, как я могу создать хэш-карту, чтобы я мог читать и писать строки на основе ключа?
Какой-то псевдокод:
i = 0
while read text1:
echo $line1 of text1
line2 = text2[i % 3]
echo $line2
## so text2 has 3 lines, I'd like to create hashmap so that I could get the line from text2 based on the line number.
Sample input:
text1:
111111
222222
333333
444444
555555
666666
text2:
AAAAAA
BBBBBB
CCCCCC
And expected output:
111111
AAAAAA
222222
BBBBBB
333333
CCCCCC
444444
AAAAAA
555555
BBBBBB
666666
CCCCCC
Спасибо