我有一堆输出通过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 2015年