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