Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

awk search on multiple fields of a multi line record file

Tags:

bash

shell

awk

I have a file with records that are of the form:

SMS-MT-FSM-DEL-REP
country: IN
1280363645.979354_PFS_1_1887728354

SMS-MT-FSM-DEL-REP
country: IN
1280363645.729309_PFS_1_1084296392

SMS-MO-FSM
country: IR
1280105721.484103_PFM_1_1187616097

SMS-MO-FSM
country: MO
1280105721.461090_PFM_1_882824215

This lends itself to parsing via awk using something like: awk 'BEGIN { FS="\n"; RS="" } /country:.*MO/ {print $0}'

My question is how do I use awk to search the records on 2 separate fields? For example I only want to print out records that have a country of MO AND whos record first line is SMS-MO-FSM ?

like image 672
adaptive Avatar asked Aug 09 '10 09:08

adaptive


2 Answers

if you have set FS="\n", and RS="", then the first field $1 would be SMS-MO-FSM. Therefore your awk code is

awk 'BEGIN{FS="\n"; RS=""} $2~/country.*MO/ && $1~/SMS-MO-FSM/ ' file
like image 50
ghostdog74 Avatar answered Oct 05 '22 15:10

ghostdog74


(I post this as a separate answer instead of a comment reply for better formatting)

Concerning your second remark about printing a record on a single line: When you don't modify your records OFS and ORS have no effect. Only when you change $0 or one of the fields awk will recompute NF and reconstruct $0 based on $1 OFS $2 OFS ... $NF ORS. You can force this reconstruction like this:

BEGIN {
    FS  = "\n"
    RS  = ""
    OFS = ";"     # Or another delimiter that does not appear in your data
    ORS = "\n"
}
$2 ~ /^[ \t]*country:[ \t]*MO[ \t]*$/ && $1 ~ /^[ \t]*SMS-MO-FSM[ \t]*$ {
    $1 = $1 ""    # This forces the reconstruction
    print
}
like image 33
schot Avatar answered Oct 05 '22 15:10

schot