extract lines from bottom until regex matchAWK match string, not Regexextract last match from logfile till endRegex match in CLIawk + print lines from the first line until match wordJava process seems to always be bound to a single CPUHow to extract lines between same patterns from a fileRemove newline linefeed before a regex matchRegEx match + additional line removalRegex match fix string in hostnameExtract multiple lines if match

Random point on a sphere

Evidence that matrix multiplication cannot be done in O(n^2 poly(log(n))) time

Why is the T-1000 humanoid?

How can I fix a framing mistake so I can drywall?

How do I politely hint customers to leave my store, without pretending to need leave store myself?

Are there any instances of members of different Hogwarts houses coupling up and marrying each other?

Why should I always enable compiler warnings?

Using the pipe operator ("|") when executing system commands

How is the Team Scooby Doo funded?

Sol Ⅲ = Earth: What is the origin of this planetary naming scheme?

Can a new chain significantly improve the riding experience? If yes - what else can?

Contract Employer Keeps Asking for Small Things Without Pay

Which ping implementation is Cygwin using?

Do any aircraft carry boats?

Renewed US passport, did not receive expired US passport

ArcMap not displaying attribute table?

Do all humans have an identical nucleotide sequence for certain proteins, e.g haemoglobin?

Can I use ratchet straps to lift a dolly into a truck bed?

Exact Brexit date and consequences

Tracks in the snow

Why did they ever make smaller than full-frame sensors?

A Little Riddle

How could a imperial dynasty keep a loose collection of pirates, raiders, etc unified?

Can I say "I have encrypted something" if I hash something?



extract lines from bottom until regex match


AWK match string, not Regexextract last match from logfile till endRegex match in CLIawk + print lines from the first line until match wordJava process seems to always be bound to a single CPUHow to extract lines between same patterns from a fileRemove newline linefeed before a regex matchRegEx match + additional line removalRegex match fix string in hostnameExtract multiple lines if match






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








3















I have this output.



[root@linux ~]# cat /tmp/file.txt
virt-top time 11:25:14 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
1 R 0 0 0 0 0.0 0.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.0 0.0 95:44:07 instance-00000372
virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


You can see it has two blocks and i want to extract last block (if you see first block it has all CPU zero which i don't care) inshort i want to extract following last lines (Notes: sometime i have more than two instance-*) otherwise i could use "tail -n 2"



1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


I have tried sed/awk/grep and all possible way but not get close to desire result.










share|improve this question


























  • It can help us help you if you provide some of your "all possible ways" you tried

    – Philippos
    12 hours ago












  • I think i am closed sed '1,/instance/p' /tmp/foo.txt still its printing header line which is ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME i can trim it down with | grep -v ID but i believe there must be better way :)

    – Satish
    12 hours ago












  • How about extracting all lines with non-zero CPU-Uage like (untested) grep -vE -e virt-top -e RDRQ -e "([^ ]* *)60.0"?

    – Philippos
    12 hours ago

















3















I have this output.



[root@linux ~]# cat /tmp/file.txt
virt-top time 11:25:14 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
1 R 0 0 0 0 0.0 0.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.0 0.0 95:44:07 instance-00000372
virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


You can see it has two blocks and i want to extract last block (if you see first block it has all CPU zero which i don't care) inshort i want to extract following last lines (Notes: sometime i have more than two instance-*) otherwise i could use "tail -n 2"



1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


I have tried sed/awk/grep and all possible way but not get close to desire result.










share|improve this question


























  • It can help us help you if you provide some of your "all possible ways" you tried

    – Philippos
    12 hours ago












  • I think i am closed sed '1,/instance/p' /tmp/foo.txt still its printing header line which is ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME i can trim it down with | grep -v ID but i believe there must be better way :)

    – Satish
    12 hours ago












  • How about extracting all lines with non-zero CPU-Uage like (untested) grep -vE -e virt-top -e RDRQ -e "([^ ]* *)60.0"?

    – Philippos
    12 hours ago













3












3








3








I have this output.



[root@linux ~]# cat /tmp/file.txt
virt-top time 11:25:14 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
1 R 0 0 0 0 0.0 0.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.0 0.0 95:44:07 instance-00000372
virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


You can see it has two blocks and i want to extract last block (if you see first block it has all CPU zero which i don't care) inshort i want to extract following last lines (Notes: sometime i have more than two instance-*) otherwise i could use "tail -n 2"



1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


I have tried sed/awk/grep and all possible way but not get close to desire result.










share|improve this question
















I have this output.



[root@linux ~]# cat /tmp/file.txt
virt-top time 11:25:14 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
1 R 0 0 0 0 0.0 0.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.0 0.0 95:44:07 instance-00000372
virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


You can see it has two blocks and i want to extract last block (if you see first block it has all CPU zero which i don't care) inshort i want to extract following last lines (Notes: sometime i have more than two instance-*) otherwise i could use "tail -n 2"



1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


I have tried sed/awk/grep and all possible way but not get close to desire result.







linux awk sed command-line regular-expression






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 9 hours ago









Jeff Schaller

49.7k11 gold badges73 silver badges165 bronze badges




49.7k11 gold badges73 silver badges165 bronze badges










asked 12 hours ago









SatishSatish

7031 gold badge14 silver badges38 bronze badges




7031 gold badge14 silver badges38 bronze badges















  • It can help us help you if you provide some of your "all possible ways" you tried

    – Philippos
    12 hours ago












  • I think i am closed sed '1,/instance/p' /tmp/foo.txt still its printing header line which is ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME i can trim it down with | grep -v ID but i believe there must be better way :)

    – Satish
    12 hours ago












  • How about extracting all lines with non-zero CPU-Uage like (untested) grep -vE -e virt-top -e RDRQ -e "([^ ]* *)60.0"?

    – Philippos
    12 hours ago

















  • It can help us help you if you provide some of your "all possible ways" you tried

    – Philippos
    12 hours ago












  • I think i am closed sed '1,/instance/p' /tmp/foo.txt still its printing header line which is ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME i can trim it down with | grep -v ID but i believe there must be better way :)

    – Satish
    12 hours ago












  • How about extracting all lines with non-zero CPU-Uage like (untested) grep -vE -e virt-top -e RDRQ -e "([^ ]* *)60.0"?

    – Philippos
    12 hours ago
















It can help us help you if you provide some of your "all possible ways" you tried

– Philippos
12 hours ago






It can help us help you if you provide some of your "all possible ways" you tried

– Philippos
12 hours ago














I think i am closed sed '1,/instance/p' /tmp/foo.txt still its printing header line which is ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME i can trim it down with | grep -v ID but i believe there must be better way :)

– Satish
12 hours ago






I think i am closed sed '1,/instance/p' /tmp/foo.txt still its printing header line which is ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME i can trim it down with | grep -v ID but i believe there must be better way :)

– Satish
12 hours ago














How about extracting all lines with non-zero CPU-Uage like (untested) grep -vE -e virt-top -e RDRQ -e "([^ ]* *)60.0"?

– Philippos
12 hours ago





How about extracting all lines with non-zero CPU-Uage like (untested) grep -vE -e virt-top -e RDRQ -e "([^ ]* *)60.0"?

– Philippos
12 hours ago










5 Answers
5






active

oldest

votes


















7
















This feels a bit silly, but:



$ tac file.txt |sed -e '/^virt-top/q' |tac
virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


GNU tac reverses the file (many non-GNU systems have tail -r instead), the sed picks lines until the first that starts with virt-top. You can add sed 1,2d or tail -n +3 to remove the headers.



Or in awk:



$ awk '/^virt-top/ a = "" a = a $0 ORS END printf "%s", a' file.txt 
virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


It just collects all the lines to a variable, and clears that variable on a line starting with virt-top.



If the file is very large, the tac+sed solution is bound to be faster since it only needs to read the tail end of the file while the awk solution reads the full file from the top.






share|improve this answer






















  • 1





    Only the tac solution is practical if file.txt is very large and the match is (as expected) towards its end. Also, it could be better written as tac file.txt | sed '/^virt-top/q' | tac

    – mosvy
    11 hours ago












  • I really like tac first time i heard :D

    – Satish
    11 hours ago











  • @mosvy, excellent points, thank you!

    – ilkkachu
    11 hours ago


















3
















With ed you can regex-search upward using ?pattern? in place of the usual /pattern/ (which searches from above the current position). So for example:



$ printf '%sn' '?ID?+1,$p' q | ed -s file.txt
1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372





share|improve this answer

























  • very simple and sweet, didn't thought about printf can run the show :)

    – Satish
    12 hours ago






  • 2





    ed sucks with very large files.

    – mosvy
    11 hours ago











  • ... because it reads the whole file into a buffer in memory before operating on it.

    – Ed Morton
    11 hours ago






  • 2





    @Ed, I suppose it depends on the implementation, but at least GNU ed, while it reads the file fully, doesn't store it whole in memory (probably only records the offsets of each line within the file which explains why it's more efficient at dealing with longer lines). It does create a temporary copy of the file though.

    – Stéphane Chazelas
    10 hours ago



















2
















If your input has a fixed number of blocks you could also do something like:



awk '/^virt-top/ && ++n == 2, 0' <your-file


To output the lines from the 2nd occurrence of virt-top to the end of the file (0 meaning false, means the end of that first,last range is never found).






share|improve this answer
































    1
















    Getting the last record from the line that starts with the string virt-top to the end using ed (suitable for dealing with files of the size comparable with what you show, not several megabytes big):



    $ printf '%sn' '?^virt-top?,$p' | ed -s file
    virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
    ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
    1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
    2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


    Or, just the lines after the last virt-top line that contain the substring instance:



    $ printf '%sn' '?^virt-top?,$g/instance/p' | ed -s file
    1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
    2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


    That last ed command, ?^virt-top?,$g/instance/p, first designates a range of lines from the last line that starts with virt-top (last, because ed starts you off on the last line of the buffer and ?re? searches backwards) to the end of the buffer ($) and applies the command g/instance/p to these lines. The g/re/p command prints all lines within the range that matches the given regular expression (that's where grep got its name from, by the way).




    Using awk:



    $ awk '/^virt-top/ lines = "" /instance/ lines = (lines == "" ? $0 : lines ORS $0) END print lines ' file
    1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
    2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


    This saves lines of input in lines whenever there's a line that contains the substring instance. These lines are printed at the end. Whenever a line that starts with virt-top is found, the saved lines are discarded.



    Virtually the same thing with sed, using the hold space to serve as the equivalent of the lines variable in the awk code:



    $ sed -n '/^virt-top.*/ s///; x; d; ; /instance/H; $ x; s/n//; p; ' file
    1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
    2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372





    share|improve this answer



























    • unix.stackexchange.com/questions/540029/…

      – mosvy
      11 hours ago


















    0
















    Here's yet another method to deal with it:



    $ sed -e '
    /n/q
    /virt-top/h;d;
    H;$!d;g
    s/n//;D
    ' file.txt


    Results



    1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
    2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372





    share|improve this answer



























      Your Answer








      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "106"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );














      draft saved

      draft discarded
















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f540029%2fextract-lines-from-bottom-until-regex-match%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      5 Answers
      5






      active

      oldest

      votes








      5 Answers
      5






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      7
















      This feels a bit silly, but:



      $ tac file.txt |sed -e '/^virt-top/q' |tac
      virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
      ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
      1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
      2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


      GNU tac reverses the file (many non-GNU systems have tail -r instead), the sed picks lines until the first that starts with virt-top. You can add sed 1,2d or tail -n +3 to remove the headers.



      Or in awk:



      $ awk '/^virt-top/ a = "" a = a $0 ORS END printf "%s", a' file.txt 
      virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
      ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
      1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
      2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


      It just collects all the lines to a variable, and clears that variable on a line starting with virt-top.



      If the file is very large, the tac+sed solution is bound to be faster since it only needs to read the tail end of the file while the awk solution reads the full file from the top.






      share|improve this answer






















      • 1





        Only the tac solution is practical if file.txt is very large and the match is (as expected) towards its end. Also, it could be better written as tac file.txt | sed '/^virt-top/q' | tac

        – mosvy
        11 hours ago












      • I really like tac first time i heard :D

        – Satish
        11 hours ago











      • @mosvy, excellent points, thank you!

        – ilkkachu
        11 hours ago















      7
















      This feels a bit silly, but:



      $ tac file.txt |sed -e '/^virt-top/q' |tac
      virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
      ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
      1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
      2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


      GNU tac reverses the file (many non-GNU systems have tail -r instead), the sed picks lines until the first that starts with virt-top. You can add sed 1,2d or tail -n +3 to remove the headers.



      Or in awk:



      $ awk '/^virt-top/ a = "" a = a $0 ORS END printf "%s", a' file.txt 
      virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
      ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
      1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
      2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


      It just collects all the lines to a variable, and clears that variable on a line starting with virt-top.



      If the file is very large, the tac+sed solution is bound to be faster since it only needs to read the tail end of the file while the awk solution reads the full file from the top.






      share|improve this answer






















      • 1





        Only the tac solution is practical if file.txt is very large and the match is (as expected) towards its end. Also, it could be better written as tac file.txt | sed '/^virt-top/q' | tac

        – mosvy
        11 hours ago












      • I really like tac first time i heard :D

        – Satish
        11 hours ago











      • @mosvy, excellent points, thank you!

        – ilkkachu
        11 hours ago













      7














      7










      7









      This feels a bit silly, but:



      $ tac file.txt |sed -e '/^virt-top/q' |tac
      virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
      ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
      1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
      2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


      GNU tac reverses the file (many non-GNU systems have tail -r instead), the sed picks lines until the first that starts with virt-top. You can add sed 1,2d or tail -n +3 to remove the headers.



      Or in awk:



      $ awk '/^virt-top/ a = "" a = a $0 ORS END printf "%s", a' file.txt 
      virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
      ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
      1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
      2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


      It just collects all the lines to a variable, and clears that variable on a line starting with virt-top.



      If the file is very large, the tac+sed solution is bound to be faster since it only needs to read the tail end of the file while the awk solution reads the full file from the top.






      share|improve this answer















      This feels a bit silly, but:



      $ tac file.txt |sed -e '/^virt-top/q' |tac
      virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
      ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
      1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
      2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


      GNU tac reverses the file (many non-GNU systems have tail -r instead), the sed picks lines until the first that starts with virt-top. You can add sed 1,2d or tail -n +3 to remove the headers.



      Or in awk:



      $ awk '/^virt-top/ a = "" a = a $0 ORS END printf "%s", a' file.txt 
      virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
      ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
      1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
      2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


      It just collects all the lines to a variable, and clears that variable on a line starting with virt-top.



      If the file is very large, the tac+sed solution is bound to be faster since it only needs to read the tail end of the file while the awk solution reads the full file from the top.







      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited 11 hours ago









      Stéphane Chazelas

      333k58 gold badges652 silver badges1023 bronze badges




      333k58 gold badges652 silver badges1023 bronze badges










      answered 12 hours ago









      ilkkachuilkkachu

      68.4k10 gold badges113 silver badges197 bronze badges




      68.4k10 gold badges113 silver badges197 bronze badges










      • 1





        Only the tac solution is practical if file.txt is very large and the match is (as expected) towards its end. Also, it could be better written as tac file.txt | sed '/^virt-top/q' | tac

        – mosvy
        11 hours ago












      • I really like tac first time i heard :D

        – Satish
        11 hours ago











      • @mosvy, excellent points, thank you!

        – ilkkachu
        11 hours ago












      • 1





        Only the tac solution is practical if file.txt is very large and the match is (as expected) towards its end. Also, it could be better written as tac file.txt | sed '/^virt-top/q' | tac

        – mosvy
        11 hours ago












      • I really like tac first time i heard :D

        – Satish
        11 hours ago











      • @mosvy, excellent points, thank you!

        – ilkkachu
        11 hours ago







      1




      1





      Only the tac solution is practical if file.txt is very large and the match is (as expected) towards its end. Also, it could be better written as tac file.txt | sed '/^virt-top/q' | tac

      – mosvy
      11 hours ago






      Only the tac solution is practical if file.txt is very large and the match is (as expected) towards its end. Also, it could be better written as tac file.txt | sed '/^virt-top/q' | tac

      – mosvy
      11 hours ago














      I really like tac first time i heard :D

      – Satish
      11 hours ago





      I really like tac first time i heard :D

      – Satish
      11 hours ago













      @mosvy, excellent points, thank you!

      – ilkkachu
      11 hours ago





      @mosvy, excellent points, thank you!

      – ilkkachu
      11 hours ago













      3
















      With ed you can regex-search upward using ?pattern? in place of the usual /pattern/ (which searches from above the current position). So for example:



      $ printf '%sn' '?ID?+1,$p' q | ed -s file.txt
      1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
      2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372





      share|improve this answer

























      • very simple and sweet, didn't thought about printf can run the show :)

        – Satish
        12 hours ago






      • 2





        ed sucks with very large files.

        – mosvy
        11 hours ago











      • ... because it reads the whole file into a buffer in memory before operating on it.

        – Ed Morton
        11 hours ago






      • 2





        @Ed, I suppose it depends on the implementation, but at least GNU ed, while it reads the file fully, doesn't store it whole in memory (probably only records the offsets of each line within the file which explains why it's more efficient at dealing with longer lines). It does create a temporary copy of the file though.

        – Stéphane Chazelas
        10 hours ago
















      3
















      With ed you can regex-search upward using ?pattern? in place of the usual /pattern/ (which searches from above the current position). So for example:



      $ printf '%sn' '?ID?+1,$p' q | ed -s file.txt
      1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
      2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372





      share|improve this answer

























      • very simple and sweet, didn't thought about printf can run the show :)

        – Satish
        12 hours ago






      • 2





        ed sucks with very large files.

        – mosvy
        11 hours ago











      • ... because it reads the whole file into a buffer in memory before operating on it.

        – Ed Morton
        11 hours ago






      • 2





        @Ed, I suppose it depends on the implementation, but at least GNU ed, while it reads the file fully, doesn't store it whole in memory (probably only records the offsets of each line within the file which explains why it's more efficient at dealing with longer lines). It does create a temporary copy of the file though.

        – Stéphane Chazelas
        10 hours ago














      3














      3










      3









      With ed you can regex-search upward using ?pattern? in place of the usual /pattern/ (which searches from above the current position). So for example:



      $ printf '%sn' '?ID?+1,$p' q | ed -s file.txt
      1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
      2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372





      share|improve this answer













      With ed you can regex-search upward using ?pattern? in place of the usual /pattern/ (which searches from above the current position). So for example:



      $ printf '%sn' '?ID?+1,$p' q | ed -s file.txt
      1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
      2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372






      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered 12 hours ago









      steeldriversteeldriver

      43.1k5 gold badges56 silver badges95 bronze badges




      43.1k5 gold badges56 silver badges95 bronze badges















      • very simple and sweet, didn't thought about printf can run the show :)

        – Satish
        12 hours ago






      • 2





        ed sucks with very large files.

        – mosvy
        11 hours ago











      • ... because it reads the whole file into a buffer in memory before operating on it.

        – Ed Morton
        11 hours ago






      • 2





        @Ed, I suppose it depends on the implementation, but at least GNU ed, while it reads the file fully, doesn't store it whole in memory (probably only records the offsets of each line within the file which explains why it's more efficient at dealing with longer lines). It does create a temporary copy of the file though.

        – Stéphane Chazelas
        10 hours ago


















      • very simple and sweet, didn't thought about printf can run the show :)

        – Satish
        12 hours ago






      • 2





        ed sucks with very large files.

        – mosvy
        11 hours ago











      • ... because it reads the whole file into a buffer in memory before operating on it.

        – Ed Morton
        11 hours ago






      • 2





        @Ed, I suppose it depends on the implementation, but at least GNU ed, while it reads the file fully, doesn't store it whole in memory (probably only records the offsets of each line within the file which explains why it's more efficient at dealing with longer lines). It does create a temporary copy of the file though.

        – Stéphane Chazelas
        10 hours ago

















      very simple and sweet, didn't thought about printf can run the show :)

      – Satish
      12 hours ago





      very simple and sweet, didn't thought about printf can run the show :)

      – Satish
      12 hours ago




      2




      2





      ed sucks with very large files.

      – mosvy
      11 hours ago





      ed sucks with very large files.

      – mosvy
      11 hours ago













      ... because it reads the whole file into a buffer in memory before operating on it.

      – Ed Morton
      11 hours ago





      ... because it reads the whole file into a buffer in memory before operating on it.

      – Ed Morton
      11 hours ago




      2




      2





      @Ed, I suppose it depends on the implementation, but at least GNU ed, while it reads the file fully, doesn't store it whole in memory (probably only records the offsets of each line within the file which explains why it's more efficient at dealing with longer lines). It does create a temporary copy of the file though.

      – Stéphane Chazelas
      10 hours ago






      @Ed, I suppose it depends on the implementation, but at least GNU ed, while it reads the file fully, doesn't store it whole in memory (probably only records the offsets of each line within the file which explains why it's more efficient at dealing with longer lines). It does create a temporary copy of the file though.

      – Stéphane Chazelas
      10 hours ago












      2
















      If your input has a fixed number of blocks you could also do something like:



      awk '/^virt-top/ && ++n == 2, 0' <your-file


      To output the lines from the 2nd occurrence of virt-top to the end of the file (0 meaning false, means the end of that first,last range is never found).






      share|improve this answer





























        2
















        If your input has a fixed number of blocks you could also do something like:



        awk '/^virt-top/ && ++n == 2, 0' <your-file


        To output the lines from the 2nd occurrence of virt-top to the end of the file (0 meaning false, means the end of that first,last range is never found).






        share|improve this answer



























          2














          2










          2









          If your input has a fixed number of blocks you could also do something like:



          awk '/^virt-top/ && ++n == 2, 0' <your-file


          To output the lines from the 2nd occurrence of virt-top to the end of the file (0 meaning false, means the end of that first,last range is never found).






          share|improve this answer













          If your input has a fixed number of blocks you could also do something like:



          awk '/^virt-top/ && ++n == 2, 0' <your-file


          To output the lines from the 2nd occurrence of virt-top to the end of the file (0 meaning false, means the end of that first,last range is never found).







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 10 hours ago









          Stéphane ChazelasStéphane Chazelas

          333k58 gold badges652 silver badges1023 bronze badges




          333k58 gold badges652 silver badges1023 bronze badges
























              1
















              Getting the last record from the line that starts with the string virt-top to the end using ed (suitable for dealing with files of the size comparable with what you show, not several megabytes big):



              $ printf '%sn' '?^virt-top?,$p' | ed -s file
              virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
              ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


              Or, just the lines after the last virt-top line that contain the substring instance:



              $ printf '%sn' '?^virt-top?,$g/instance/p' | ed -s file
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


              That last ed command, ?^virt-top?,$g/instance/p, first designates a range of lines from the last line that starts with virt-top (last, because ed starts you off on the last line of the buffer and ?re? searches backwards) to the end of the buffer ($) and applies the command g/instance/p to these lines. The g/re/p command prints all lines within the range that matches the given regular expression (that's where grep got its name from, by the way).




              Using awk:



              $ awk '/^virt-top/ lines = "" /instance/ lines = (lines == "" ? $0 : lines ORS $0) END print lines ' file
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


              This saves lines of input in lines whenever there's a line that contains the substring instance. These lines are printed at the end. Whenever a line that starts with virt-top is found, the saved lines are discarded.



              Virtually the same thing with sed, using the hold space to serve as the equivalent of the lines variable in the awk code:



              $ sed -n '/^virt-top.*/ s///; x; d; ; /instance/H; $ x; s/n//; p; ' file
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372





              share|improve this answer



























              • unix.stackexchange.com/questions/540029/…

                – mosvy
                11 hours ago















              1
















              Getting the last record from the line that starts with the string virt-top to the end using ed (suitable for dealing with files of the size comparable with what you show, not several megabytes big):



              $ printf '%sn' '?^virt-top?,$p' | ed -s file
              virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
              ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


              Or, just the lines after the last virt-top line that contain the substring instance:



              $ printf '%sn' '?^virt-top?,$g/instance/p' | ed -s file
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


              That last ed command, ?^virt-top?,$g/instance/p, first designates a range of lines from the last line that starts with virt-top (last, because ed starts you off on the last line of the buffer and ?re? searches backwards) to the end of the buffer ($) and applies the command g/instance/p to these lines. The g/re/p command prints all lines within the range that matches the given regular expression (that's where grep got its name from, by the way).




              Using awk:



              $ awk '/^virt-top/ lines = "" /instance/ lines = (lines == "" ? $0 : lines ORS $0) END print lines ' file
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


              This saves lines of input in lines whenever there's a line that contains the substring instance. These lines are printed at the end. Whenever a line that starts with virt-top is found, the saved lines are discarded.



              Virtually the same thing with sed, using the hold space to serve as the equivalent of the lines variable in the awk code:



              $ sed -n '/^virt-top.*/ s///; x; d; ; /instance/H; $ x; s/n//; p; ' file
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372





              share|improve this answer



























              • unix.stackexchange.com/questions/540029/…

                – mosvy
                11 hours ago













              1














              1










              1









              Getting the last record from the line that starts with the string virt-top to the end using ed (suitable for dealing with files of the size comparable with what you show, not several megabytes big):



              $ printf '%sn' '?^virt-top?,$p' | ed -s file
              virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
              ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


              Or, just the lines after the last virt-top line that contain the substring instance:



              $ printf '%sn' '?^virt-top?,$g/instance/p' | ed -s file
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


              That last ed command, ?^virt-top?,$g/instance/p, first designates a range of lines from the last line that starts with virt-top (last, because ed starts you off on the last line of the buffer and ?re? searches backwards) to the end of the buffer ($) and applies the command g/instance/p to these lines. The g/re/p command prints all lines within the range that matches the given regular expression (that's where grep got its name from, by the way).




              Using awk:



              $ awk '/^virt-top/ lines = "" /instance/ lines = (lines == "" ? $0 : lines ORS $0) END print lines ' file
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


              This saves lines of input in lines whenever there's a line that contains the substring instance. These lines are printed at the end. Whenever a line that starts with virt-top is found, the saved lines are discarded.



              Virtually the same thing with sed, using the hold space to serve as the equivalent of the lines variable in the awk code:



              $ sed -n '/^virt-top.*/ s///; x; d; ; /instance/H; $ x; s/n//; p; ' file
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372





              share|improve this answer















              Getting the last record from the line that starts with the string virt-top to the end using ed (suitable for dealing with files of the size comparable with what you show, not several megabytes big):



              $ printf '%sn' '?^virt-top?,$p' | ed -s file
              virt-top time 11:25:17 Host foo.example.com x86_64 32/32CPU 1200MHz 65501MB
              ID S RDRQ WRRQ RXBY TXBY %CPU %MEM TIME NAME
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


              Or, just the lines after the last virt-top line that contain the substring instance:



              $ printf '%sn' '?^virt-top?,$g/instance/p' | ed -s file
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


              That last ed command, ?^virt-top?,$g/instance/p, first designates a range of lines from the last line that starts with virt-top (last, because ed starts you off on the last line of the buffer and ?re? searches backwards) to the end of the buffer ($) and applies the command g/instance/p to these lines. The g/re/p command prints all lines within the range that matches the given regular expression (that's where grep got its name from, by the way).




              Using awk:



              $ awk '/^virt-top/ lines = "" /instance/ lines = (lines == "" ? $0 : lines ORS $0) END print lines ' file
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372


              This saves lines of input in lines whenever there's a line that contains the substring instance. These lines are printed at the end. Whenever a line that starts with virt-top is found, the saved lines are discarded.



              Virtually the same thing with sed, using the hold space to serve as the equivalent of the lines variable in the awk code:



              $ sed -n '/^virt-top.*/ s///; x; d; ; /instance/H; $ x; s/n//; p; ' file
              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372






              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited 11 hours ago

























              answered 12 hours ago









              KusalanandaKusalananda

              163k19 gold badges321 silver badges508 bronze badges




              163k19 gold badges321 silver badges508 bronze badges















              • unix.stackexchange.com/questions/540029/…

                – mosvy
                11 hours ago

















              • unix.stackexchange.com/questions/540029/…

                – mosvy
                11 hours ago
















              unix.stackexchange.com/questions/540029/…

              – mosvy
              11 hours ago





              unix.stackexchange.com/questions/540029/…

              – mosvy
              11 hours ago











              0
















              Here's yet another method to deal with it:



              $ sed -e '
              /n/q
              /virt-top/h;d;
              H;$!d;g
              s/n//;D
              ' file.txt


              Results



              1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
              2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372





              share|improve this answer





























                0
















                Here's yet another method to deal with it:



                $ sed -e '
                /n/q
                /virt-top/h;d;
                H;$!d;g
                s/n//;D
                ' file.txt


                Results



                1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
                2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372





                share|improve this answer



























                  0














                  0










                  0









                  Here's yet another method to deal with it:



                  $ sed -e '
                  /n/q
                  /virt-top/h;d;
                  H;$!d;g
                  s/n//;D
                  ' file.txt


                  Results



                  1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
                  2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372





                  share|improve this answer













                  Here's yet another method to deal with it:



                  $ sed -e '
                  /n/q
                  /virt-top/h;d;
                  H;$!d;g
                  s/n//;D
                  ' file.txt


                  Results



                  1 R 0 0 0 0 0.6 12.0 96:02:53 instance-0000036f
                  2 R 0 0 0 0 0.2 12.0 95:44:08 instance-00000372






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 3 hours ago









                  Rakesh SharmaRakesh Sharma

                  1961 silver badge3 bronze badges




                  1961 silver badge3 bronze badges































                      draft saved

                      draft discarded















































                      Thanks for contributing an answer to Unix & Linux Stack Exchange!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f540029%2fextract-lines-from-bottom-until-regex-match%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

                      Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

                      Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367