나는 sed와 awk를 통과하는 많은 출력을 가지고 있습니다.
출력에 시작 접두사를 붙이고 대답에 접미사를 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