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.
"Sometimes you eat the bear, and sometimes, well, he eats you."