2025-04-27 07:49:33 -04:00

10 lines
120 B
Awk

BEGIN {
FS="\t"
}
{
if ($0 !~ /^;/)
if ($2 != "" && $2 != ".")
printf "%s\t%s\n",$1,$2
}