awk -F'\t' '$4 !~ /Error/' input.txt > output.txt
Removes lines from a tab-delimited file where the (sub)string “Error” appears in the 4th column/field.
nihilism is exhausting
awk -F'\t' '$4 !~ /Error/' input.txt > output.txt
Removes lines from a tab-delimited file where the (sub)string “Error” appears in the 4th column/field.
"Yeah, well, that's just, like, your opinion, man."