awk ou
awk '{
if ( $2 == "abc" || $2 == "def") {
print "blah"
}
}'
Helpless Hedgehog
awk '{
if ( $2 == "abc" || $2 == "def") {
print "blah"
}
}'