Tengo un montón de resultados pasando por sed y awk.
¿Cómo puedo prefijar la salida con START y sufijo la respuesta con END?
Por ejemplo, si tengo
All this code
on all these lines
and all these
¿Cómo podría obtener:
START
All this code
on all these lines
and all these
END
?
Mi intento fue:
awk '{print "START";print;print "END"}'
pero tengo
...
START
All this code
END
START
on all these lines
END
START
and all these
END