sedとawkを通過する大量の出力があります。
出力の先頭にSTARTを付け、回答の最後にENDを付けるにはどうすればよいですか?
たとえば、私が持っている場合
All this code
on all these lines
and all these
どうすれば入手できます:
START
All this code
on all these lines
and all these
END
?
私の試みは:
awk '{print "START";print;print "END"}'
しかし、私は得た
...
START
All this code
END
START
on all these lines
END
START
and all these
END
9
BEGINとEND使用して ...
—
jasonwryan