Does awk have an OR statement i.e given the following snippet:
OR
awk \'{if ($2==\"abc\") print \"blah\"}\'
Is it possible t
Yes. There's logical OR || that you can use:
||
awk '{if ($2=="abc" || $2=="def") print "blah" }'