Post
Topic
Board Development & Technical Discussion
Re: Bitcoin address mass balance checker [Tutorial and code]
by
LoyceV
on 04/06/2020, 11:31:01 UTC
4 pipeline? That's crazy, i never used more than 3 pipeline at once.
Actually, I started with this:
Code:
comm -12 <(cat blockchair_bitcoin_addresses_latest.tsv | cut -f 1 | sort | uniq) <(cat mylist.txt | sort | uniq)
But splitting it up reduced CPU load.

I often end up with dozens of pipes on a line. It's very convenient for testing, after each new pipe I instantly see the result and either adjust it or add the next one.