Как добавить строку в начало строки, если строка и следующая строка начинаются с цифр?
От:
random text
random text
65345
234
random text
random text
random text
random text
random text
random text
9875
789709
random text
random text
random text
До:
random text
random text
appended text 65345
234
random text
random text
random text
random text
random text
random text
appended text 9875
789709
random text
random text
random text
Добавление ко всем строкам, которые начинаются с цифр, так же просто, как
$ printf "hello\n123\n" | sed 's/^[0-9]/appended text &/'
hello
appended text 123
Не знаю, как сделать то, что я пытаюсь сделать.
«случайный текст» может закончиться в номере
Есть идеи?