Grab contents between two matched patterns


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Grab contents between two matched patterns
# 15  
Old 02-05-2013
That was probably because Corona's suggestion needed another =-sign:
Code:
awk '$1=="N" { P=1; next } $1=="$$" { P=0 } P' file

# 16  
Old 02-05-2013
the only way I could make sense of why that works is awk prints out whatever line that are between the two patterns, without much directionality.

Code:
/pattern2/ {on=0} on

when pattern2 is found, store the lines but do not print, is that correct?

Code:
 /pattern1/ {on=1}

when pattern1 is found turn on print. But pattern 1 occurs before pattern 2 in the table. So what is it printing? I think awk works its way down the table as it executes the command, so that code doesn't make much logical sense to me. Or does it not work like that?
# 17  
Old 02-06-2013
Quote:
Originally Posted by piynik
the only way I could make sense of why that works is awk prints out whatever line that are between the two patterns, without much directionality.

Code:
/pattern2/ {on=0} on

when pattern2 is found, store the lines but do not print, is that correct?
No. See below.

Quote:
Code:
 /pattern1/ {on=1}

when pattern1 is found turn on print.
Yes.
Quote:
But pattern 1 occurs before pattern 2 in the table. So what is it printing? I think awk works its way down the table as it executes the command, so that code doesn't make much logical sense to me. Or does it not work like that?
Please try diving in deeper into awk by reading man pages or other literature. awk in very general terms does the following: execute the BEGIN action (if exists), then read input line after line, and apply the program steps given sequentially to each line. Program steps consist of pattern {action} pairs, in priciple. Whenever a pattern evaluates to TRUE, execute the action. The default action is {print}. So in your case
Code:
...                # read line
/pattern2/ {on=0}  # does closing pattern occur in the line --> store THE FACT (implies not printing the closing line)
on                 # default print if on (on == TRUE), don't if FALSE
/pattern1/ {on=1}  # does opening pattern occur in the line --> store THE FACT (implies not having printed the opening line)
...

So, as you can see, by carefully arranging the steps you can tailor the output to your needs.

BTW - you could, of course, append the down-the-line awk processing that you mentioned before into the above awk program...
# 18  
Old 02-06-2013
After much deliberation I can begin to make sense of the code

My final question is, as Awk reads in the first line of input and execute the following commands for the first line

Code:
.../pattern2/ {on=0}on/pattern1/ {on=1}...

What is the default value of
Code:
on

as it has not been initialised? As it reads the first line of input pattern2 is not matched so
Code:
{on=0}

is not executed, then how does Awk evaluate
Code:
on

(no initialised value?) before it goes down to
Code:
/pattern1/ {on=1}

which will be true?

I did try to dive into manuals and online resources but I read little stuffs here and little stuffs there it is difficult to get a complete picture.

But many thanks for your help.
# 19  
Old 02-06-2013
For awk, uninitialized variables are 0 or "". This was implicitly taken into account by my proposal.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to print two matched patterns only from each line?

My input looks like this. # Lot Of CODE Before AppType_somethinglese=$(cat << EOF AppType_test1='test-tool/blatest-tool-ear' AppType_test2='test/blabla-ear' # Lot Of CODE After I want to print text betwen 1) _ and = and 2)/ and ' from each line and exclude lines with "EOF". Output... (2 Replies)
Discussion started by: kchinnam
2 Replies

2. Shell Programming and Scripting

Extract all the sentences that matched two patterns

Hi I have two lists of patterns named A and B consisting of around 200 entries in each and I want to extract all the sentences from a big text file which match atleast one pattern from both A and B. For example, pattern list A consists of : ama ani ahum mari ... ... and pattern... (1 Reply)
Discussion started by: my_Perl
1 Replies

3. Shell Programming and Scripting

Find matched patterns and print them with other patterns not the whole line

Hi, I am trying to extract some patterns from a line. The input file is space delimited and i could not use column to get value after "IN" or "OUT" patterns as there could be multiple white spaces before the next digits that i need to print in the output file . I need to print 3 patterns in a... (3 Replies)
Discussion started by: redse171
3 Replies

4. Shell Programming and Scripting

Matched multiple patterns that could be in a same line

Hi, I need help to match pattern started with "RW" in file 1 and with pattern in $1 in file 2 as follows:- File 1 BH /TOTAL=466(423); /POSITIVE=300(257); /UNKNOWN=25(25); BH /F_P=141(141); /F_N=136; /P=4; CC /TAX=!?; /MAX-R=2; CC /VER=2; RW P9610, AR_BSU , T; PAE25, AE_E57... (10 Replies)
Discussion started by: redse171
10 Replies

5. Shell Programming and Scripting

Grab contents between two patterns

Hi, What is the best approach to grab contents between Changes Dependencies from the following example snippy Changes in packages about to be updated: bash-3.2-32.el5_9.1.x86_64 * Thu Jun 27 22:00:00 2013 Roman Rakus <rrakus@redhat.com> - 3.2-32.1 - Fixed a bug that caused... (2 Replies)
Discussion started by: ashokvpp
2 Replies

6. Shell Programming and Scripting

Grab nth occurence in between two patterns using awk or sed

Hi , I have an issue where I want to parse through the output from a file and I want to grab the nth occurrence of text in between two patterns preferably using awk or sed ! TICKET NBR : 1 !GSI : 102 ! 3100.2.112.1 11/06/2013 15:56:29 ! 3100.2.22.3 98 ! 3100.2.134.2... (8 Replies)
Discussion started by: OTNA
8 Replies

7. Shell Programming and Scripting

Grab the contents with in special character

I have a file which contains below kind of lines 2013-05-21 00:00:03 INFO moved to unprocessed, as doesn't exist in masklist and modified at 2013-05-20@21:21:21.000000000. 2013-05-21 00:00:03 INFO moved to unprocessed, as doesn't exist in masklist and modified at... (1 Reply)
Discussion started by: manas_ranjan
1 Replies

8. UNIX for Dummies Questions & Answers

grep to show patterns being matched (-f option)

I have a list of patterns (regexes) in a file and use with `grep -f <file_with_list_of_regexes.txt> input.txt` to search in my input for those patterns. grep is doing a fantastic job at it and finds me the matching input text but I also want to see in the output the regex (from... (1 Reply)
Discussion started by: mirage
1 Replies

9. Shell Programming and Scripting

How to group matched patterns in different files

Hi, I have a master file that i need to split into multiple files based on matched patterns. sample of my data as follows:- scaff_1 a e 123 130 c_scaff_100 scaff_1 a e 132 138 c_scaff_101 scaff_1 a e 140 150 ... (2 Replies)
Discussion started by: redse171
2 Replies

10. Shell Programming and Scripting

How to get only matched contents?

Hi, I have an array. @arr=("abcdefgh","ppppppp","rrr"); $tofind="rrr";#string to find. I want to match this string and retrieve only matched contents. In this case rrr is found in 2nd position in an array i want to print only rrr. If the string is matched i have to retrieve only... (1 Reply)
Discussion started by: vanitham
1 Replies
Login or Register to Ask a Question