Skip to content

Instantly share code, notes, and snippets.

@PanJarda
Created July 20, 2020 18:21
Show Gist options
  • Save PanJarda/8276868e1916dd7d64edd03c5241da16 to your computer and use it in GitHub Desktop.
Save PanJarda/8276868e1916dd7d64edd03c5241da16 to your computer and use it in GitHub Desktop.
#!/usr/bin/awk -f
#
# csv format:
# firstname, lastname, tel
#
# ./csv2vcf.awk [filename.csv] > out.vcf
BEGIN {
FS=","
OFS=""
}
{
print "BEGIN:VCARD"
print "VERSION:2.1"
print "N:",$2,";",$1,";;;"
print "FN:",$1," ",$2
print "TEL;CELL:",$3
print "END:VCARD"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment