hacks/bin/ubtc

8 lines
204 B
Plaintext
Raw Normal View History

2021-11-09 17:50:04 +00:00
#!/bin/bash
UBTC="$1"
BTC="$(echo "scale=6 ; $UBTC / 1000000" | bc)"
BTCUSD="$(curl -sS https://blockchain.info/ticker | jq -r '.USD.last')"
echo \$$(echo "scale=2 ; ( $BTC * $BTCUSD ) /1.00" | bc) USD