magarena/scripts/unimplementable_to_tsv.awk

9 lines
92 B
Awk

/# / {
reason = gensub("^# ", "", "g")
next
}
/[A-Z]/ {
print $0 "\t" reason
}