У меня есть куча выходных, проходящих через sed и awk.
Как можно префикс вывода с START и суффикс ответа с END?
Например, если у меня есть
All this code
on all these lines
and all these
Как я мог получить:
START
All this code
on all these lines
and all these
END
?
Моя попытка была:
awk '{print "START";print;print "END"}'
но я получил
...
START
All this code
END
START
on all these lines
END
START
and all these
END