1 e662650f 2023-05-30 continue # Convert contacts.vcf (exporter from Android) to
2 d1aa313b 2023-05-30 continue # [contacts.tsv](https://man.sr.ht/~anjan/sxmo-docs/USERGUIDE.md#stronggeneral-settingsstrong):
3 d1aa313b 2023-05-30 continue # python3 -m quopri -d contacts.vcf | awk -f vcf2tsv.awk > contacts.tsv
4 0a28168c 2023-05-30 continue BEGIN { FS = ":" }
5 0a28168c 2023-05-30 continue /^BEGIN:VCARD/ { fn = "?"; telc = 0; delete telv }
6 0a28168c 2023-05-30 continue /^TEL[:;]/ { telv[telc++] = $2 }
7 0a28168c 2023-05-30 continue /^FN[:;]/ { fn = $2 }
8 0a28168c 2023-05-30 continue /^END:VCARD/ { for ( i = 0; i < telc; i++ ) printf "%s\t\t%s\n", telv[i], fn }