Delete row if both percentage values are equal to zero

Hello,

I have compiled a script but I have stucked at one point.
Each line contains two pcs of % value and what I want to do is to delete any line if both % values are zero.

data:

expected output:

ow3 should be deleted as both percentage value in related line are equal to zero.

Thanks in advance
Boris

Try

awk '!(2==gsub(/>0%/, "&"))' file
2 Likes

many thanks, Rudic!
Boris

1 Like