dotfiles/.local/scripts/bbl/0210_30_TRYRUB

13 lines
522 B
Plaintext
Raw Normal View History

2022-10-03 02:06:02 +08:00
#!/bin/bash
COLOR1="#AAAAAA"
COLOR2="#444444"
ut=$(curl -s 'https://api.binance.com/api/v3/ticker/24hr?symbol=USDTTRY' -H 'accept: application/json' | grep -o 'lastPrice":"[^"]*' | cut -d\" -f3 | sed 's/.\{6\}$//')
ur=$(curl -s 'https://api.binance.com/api/v3/ticker/24hr?symbol=USDTRUB' -H 'accept: application/json' | grep -o 'lastPrice":"[^"]*' | cut -d\" -f3 | sed 's/.\{6\}$//')
price=$(awk "BEGIN{print $ur/$ut}")
price=$(printf %.2f "$price")
echo "^b$COLOR1^^c$COLOR2^  ^c$COLOR1^^b$COLOR2^ $price RUB ^d^"