Post
Topic
Board Development & Technical Discussion
Merits 13 from 3 users
Re: All used addresses
by
naufragus
on 24/08/2020, 11:44:49 UTC
⭐ Merited by LoyceV (6) ,suchmoon (4) ,ETFbitcoin (3)
Hey, i wrote my methodology in my github repo for my addresses list..
Anyways, here is what i did..

Code:
$ nl concat.txt | TMPDIR='/large/tmp/dir' LC_ALL=C sort -k2 -u | sort -n | cut -f2 > final.txt

Note that using LC_ALL=C will greatly speed up sorting!