How to add a header and/or footer to a sed or awk stream?

Michael Durrant

I have a bunch of output going through sed and awk.

How can I prefix the output with START and suffix the answer with END?

For example, if I have

All this code
on all these lines
and all these

How could I get:

START
All this code
on all these lines
and all these
END

?

My attempt was:

awk '{print "START";print;print "END"}'

but I got

...
START
    All this code
END
START
    on all these lines
END
START
    and all these
END
Michael Durrant

This works, as indicated by jasonwryan:

awk 'BEGIN{print "START"}; {print}; END{print "END"}'

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How to add an image as a header/footer in Markdown for a PDF document

分類Dev

How to add Header and footer content to pdfkit for node.js

分類Dev

how do I add header/footer on my Recyclerview in android

分類Dev

Change header using sed or awk

分類Dev

dynamically add footer or header in jquery mobile

分類Dev

How to add multiple lines at bottom (footer) of PDF?

分類Dev

how to add footer to material ui drawer component?

分類Dev

How to include header and footer in HTML files using handlebars

分類Dev

How to include header and footer in HTML files using handlebars

分類Dev

How to hide header and footer in tizen webviewer sample app?

分類Dev

ReactJS Header and Footer

分類Dev

Links in header/footer with wkhtmltopdf?

分類Dev

How to insert date with awk in linux in the header record,

分類Dev

How to insert date with awk in linux in the header record,

分類Dev

add quotes to words matching regex in file awk or sed

分類Dev

CSS header & footer, scrollable content

分類Dev

Add loading footer on UITableView

分類Dev

How to use sed or awk to process the content of a specified column?

分類Dev

How can i generate pdf using xsl-fo footer and header?

分類Dev

Webflux, How to intercept a request and add a new header

分類Dev

How to add header to row for each record

分類Dev

How to add tooltip to datatable header in vuetify?

分類Dev

Use awk as a stream editor

分類Dev

Sed or AWK: Add line after each ocurrance of pattern between a range of line numbers

分類Dev

sqlcmd output file remove header and footer

分類Dev

Adding continuous border to only header and footer of table

分類Dev

Replace text on header and footer of Excel file

分類Dev

Irfanview cutting off header and footer when printing

分類Dev

I want to change header and footer in magento

Related 関連記事

  1. 1

    How to add an image as a header/footer in Markdown for a PDF document

  2. 2

    How to add Header and footer content to pdfkit for node.js

  3. 3

    how do I add header/footer on my Recyclerview in android

  4. 4

    Change header using sed or awk

  5. 5

    dynamically add footer or header in jquery mobile

  6. 6

    How to add multiple lines at bottom (footer) of PDF?

  7. 7

    how to add footer to material ui drawer component?

  8. 8

    How to include header and footer in HTML files using handlebars

  9. 9

    How to include header and footer in HTML files using handlebars

  10. 10

    How to hide header and footer in tizen webviewer sample app?

  11. 11

    ReactJS Header and Footer

  12. 12

    Links in header/footer with wkhtmltopdf?

  13. 13

    How to insert date with awk in linux in the header record,

  14. 14

    How to insert date with awk in linux in the header record,

  15. 15

    add quotes to words matching regex in file awk or sed

  16. 16

    CSS header & footer, scrollable content

  17. 17

    Add loading footer on UITableView

  18. 18

    How to use sed or awk to process the content of a specified column?

  19. 19

    How can i generate pdf using xsl-fo footer and header?

  20. 20

    Webflux, How to intercept a request and add a new header

  21. 21

    How to add header to row for each record

  22. 22

    How to add tooltip to datatable header in vuetify?

  23. 23

    Use awk as a stream editor

  24. 24

    Sed or AWK: Add line after each ocurrance of pattern between a range of line numbers

  25. 25

    sqlcmd output file remove header and footer

  26. 26

    Adding continuous border to only header and footer of table

  27. 27

    Replace text on header and footer of Excel file

  28. 28

    Irfanview cutting off header and footer when printing

  29. 29

    I want to change header and footer in magento

ホットタグ

アーカイブ