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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to specify to awk that you are using a tab delimiter, and that is a special case. I tested the following:
The answer is 5, so it seems to work. The $ is necessary here.