Mam sporo wyników przechodzących przez sed i awk.
Jak mogę poprzedzić wyjście słowem START, a sufiksu odpowiedź - END?
Na przykład, jeśli mam
All this code
on all these lines
and all these
Jak mogę uzyskać:
START
All this code
on all these lines
and all these
END
?
Moja próba była:
awk '{print "START";print;print "END"}'
ale mam
...
START
All this code
END
START
on all these lines
END
START
and all these
END