Eu tenho um monte de saída passando por sed e awk.
Como prefixo a saída com START e sufixo a resposta com END?
Por exemplo, se eu tiver
All this code
on all these lines
and all these
Como eu pude obter:
START
All this code
on all these lines
and all these
END
?
Minha tentativa foi:
awk '{print "START";print;print "END"}'
mas eu tenho
...
START
All this code
END
START
on all these lines
END
START
and all these
END