diff --git a/bin/ubtc b/bin/ubtc new file mode 100755 index 0000000..9dd4007 --- /dev/null +++ b/bin/ubtc @@ -0,0 +1,7 @@ +#!/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 +