When I write the following command:
awk '$3 != 0.00 && $5 < 0.2' file
The condition applies only if $2 is not empty.
Why? The tab is there
When I write the following command:
awk '$3 != 0.00 && $5 < 0.2' file
The condition applies only if $2 is not empty.
Why? The tab is there