Post
Topic
Board Project Development
Merits 1 from 1 user
Re: List of all Bitcoin addresses with a balance
by
LoyceV
on 31/05/2024, 05:51:37 UTC
⭐ Merited by PowerGlove (1)
I tried a lot and could not put to work these commands on linux mint
I've deleted your post because of the unnecessary long quote.

Your screenshot already shows the problem:
[/quote]

Quote
comm -12 Bitcoin_addresses_LATEST.txt <(cat wallet.txt | sort | uniq)
The file with balances is indeed not sorted. And you can't use it, because comm matches whole lines. Remove the balances and sort it, or download the file without balances.

Quote
comm -12 Bitcoin_addresses_LATEST.txt <(cat wallet.txt | fromdos | sort | uniq)
If you need it, install tofrodos, as it tells you to do.

Running this as root is bad practice.