Search Results

Search: Posts Made By: janshamsani
3,122
Posted By RavinderSingh13
Hello janshamsani, Let's say following is...
Hello janshamsani,

Let's say following is your Input_file(I have taken data from your Input_file only as there was no line having value more than .25 so add one more line to it as follows.).

1 ...
1,655
Posted By Scrutinizer
Try: awk -F'\t' '$1=="HIGH" && $2=="PASS" && (...
Try:
awk -F'\t' '$1=="HIGH" && $2=="PASS" && ( $3==1 || $3==3 )' file

or do you mean:
awk -F'\t' '$1=="HIGH" && $2=="PASS" && $3~/1.*3|3.*1/' file
which could also be written as:
awk -F'\t'...
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 10:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy