Ho un sacco di output che passa attraverso sed e awk.
Come posso aggiungere il prefisso all'uscita con START e suffisso la risposta con END?
Ad esempio, se ho
All this code
on all these lines
and all these
Come potrei ottenere:
START
All this code
on all these lines
and all these
END
?
Il mio tentativo è stato:
awk '{print "START";print;print "END"}'
ma ho ottenuto
...
START
All this code
END
START
on all these lines
END
START
and all these
END