将某列为/不为空的行删除

如第五列为空的时候删除该行

gawk -F '\t' '{if($5!="") print $0}' yourfile

gawk -F '\t' '{if($5=="") print $0}' yourfile

你可能感兴趣的:(将某列为/不为空的行删除)