Ich habe ein paar Ausgaben, die durch sed und awk laufen.
Wie kann ich der Ausgabe START voranstellen und der Antwort END hinzufügen?
Zum Beispiel, wenn ich habe
All this code
on all these lines
and all these
Wie könnte ich bekommen:
START
All this code
on all these lines
and all these
END
?
Mein Versuch war:
awk '{print "START";print;print "END"}'
aber ich habe
...
START
All this code
END
START
on all these lines
END
START
and all these
END