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]
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.
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.