Posts Tagged ‘AWK’

Pattern matching example:

awk '/foo1/ && /foo2/ { print $1 }'  

To use shell variables simply do the following:

foo1={pattern1}
foo2={pattern2}

awk "/$foo1/ && /$foo2/"'{ print $1 }'