mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 14:59:44 +00:00
13 lines
370 B
Plaintext
13 lines
370 B
Plaintext
|
#!/bin/sh
|
||
|
RETURN=0
|
||
|
|
||
|
# dump all coins except the first 3 (Bitcoin, Testnet, Regtest)
|
||
|
./common/tools/cointool.py dump -l -p -t | grep '"name"' | cut -d '"' -f 4 | tail -n +4 | while read altcoin; do
|
||
|
# echo :"$altcoin":
|
||
|
if strings $1 | grep "$altcoin" | grep -v TEXT_MARGIN_LEFT | grep -v _MIN_MNEMONIC_LENGTH_WORD ; then
|
||
|
RETURN=1
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
exit $RETURN
|