mbideau / vcardtools

Automatically fix, split, normalize, group and merge/deduplicate vCard and VCF files (even large ones).
GNU General Public License v3.0
46 stars 9 forks source link

Add feature: output a list of resulting card by order of the most merged/grouped cards #14

Open mbideau opened 2 years ago

mbideau commented 2 years ago

Currently we can get that information by hacking around the log (if ran in debug mode), with :

❯ grep '^DEBUG \+.* ([0-9]\+ vcards)$' log.txt | sed 's/^DEBUG \+\(.*\) (\([0-9]\+\) vcards)$/\2 \1/g' | sort -nr

It could highlight what card contains a lot of other card merged into it, and that would be a precious info for the user to search for "false positive / wrong merges".