J'ai un tas de sortie passant par sed et awk.
Comment puis-je préfixer la sortie avec START et suffixer la réponse avec END?
Par exemple, si j'ai
All this code
on all these lines
and all these
Comment pourrais-je obtenir:
START
All this code
on all these lines
and all these
END
?
Ma tentative était:
awk '{print "START";print;print "END"}'
mais j'ai
...
START
All this code
END
START
on all these lines
END
START
and all these
END