Я хочу добавить случайное число каждые новые строки, созданные sed
На данный момент моя команда:
sed "a path/to/file$(($RANDOM%7))" tmp/line.txt
Результат:
line1
path/to/file1
line3
path/to/file1
line5
path/to/file1
line7
path/to/file1
...(22K lines)
Ожидается:
line1
path/to/file1
line3
path/to/file0
line5
path/to/file7
line7
path/to/file5
...(22k lines)