Post
Topic
Board Development & Technical Discussion
Merits 2 from 1 user
Re: Best way to find batches of Base58 addresses
by
LoyceV
on 22/05/2024, 16:14:14 UTC
⭐ Merited by tbct_mt2 (2)
Is there a way or command you could recommend to sort or isolate Base58 (legacy) addresses from the TSV sheet > to a data.txt file?
Use grep:
Code:
grep "^1" blockchair_bitcoin_addresses_and_balance_May_22_2024.tsv > legacy_and_balance.tsv
I did it for you: legacy_and_balance.tsv (file will be deleted in 24h).