ฉันมีกลุ่มของผลลัพธ์ที่จะผ่าน 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