all repos — dotfiles @ 59cb8d4e7c1136ef2ef0a20e3d65aa50f0bb72c2

linux dotfiles

bin/scripts/print_btc_price (view raw)

 1
 2
 3
 4
 5
 6
 7
#!/usr/bin/sh

url="https://api.coindcx.com/exchange/ticker"

btc_price=$(curl -sL $url | jq -r '"\(.[0].last_price) \(.[0].change_24_hour)"')

echo "󰠓 $btc_price"