QnD: fixing evolution-exported addressbook data to include “display name”
Posted in Uncategorized by Julian Kessel - Aug 23, 2011
I'll keep it short: Export your AB via evolution, import it into TB, export it as csv, run the following script:
awk -F"," '{printf("%s,%s,%s %s,", $1,$2,$1,$2); for(i=4;i<36;i++) printf("%s,",$i); printf("\n")}' in.csv > out.csv
import the new csv into TB. You can also shorten this way via modding my one-liner and directly transforming evolution's output (it just makes double qoutes around the values) and import it then.
COMMENTS
