У меня есть файл, подобный этому (1), и я хочу вывод, подобный этому (2). С "grep -e file -e index" я получил это (3). Знаете ли вы, чего не хватает для достижения структуры в (2)?
(1)
file: path/to/file1
other info_1
index = a
file: path/to/file2
other info_2
index = b
file: path/to/file3
other info_3
index = c
...
(2)
file: path/to/file1 index = a
file: path/to/file2 index = b
file: path/to/file3 index = c
...
(3)
file: path/to/file1
index = a
file: path/to/file2
index = b
file: path/to/file3
index = c
...