blob: 181c4bf709b77fe8cec15baca0793935fc1df2ee [file] [log] [blame]
#!/bin/awk -f
# Filter out redundant "*32" symbols.
BEGIN {
s=""
c=""
}
NF == 3 && $2 ~ /^"[^",]*",$/ {
if ($2 == s && $3 == c)
next
s = $2
sub(/",$/, "32\",", s)
c = $3
}
{
print
}