I\'m learning awk from The AWK Programming Language and I have a problem with one of the examples.
If I wanted to print $3 if $2 is equal to a value (e.g.1
1
This is more readable for me
awk '{if ($2 ~ /findtext/) print $3}'