Last active
May 24, 2017 13:34
-
-
Save oneingan/553c2c7ccc9e53075d96cfca7a864e8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl -s "https://api.kraken.com/0/public/Ticker?pair=XBTEUR" | jq '.[] | .[].c | .[0]' | tr '.' ',' | |
curl -s "https://api.kraken.com/0/public/Ticker?pair=ETHXBT" | jq '.[] | .[].c | .[0]' | tr '.' ',' | |
curl -s "https://api.kraken.com/0/public/Ticker?pair=XMRXBT" | jq '.[] | .[].c | .[0]' | tr '.' ',' | |
curl -s "https://api.kraken.com/0/public/Ticker?pair=ETCXBT" | jq '.[] | .[].c | .[0]' | tr '.' ',' | |
curl -s "https://api.kraken.com/0/public/Ticker?pair=LTCXBT" | jq '.[] | .[].c | .[0]' | tr '.' ',' | |
curl -s "https://api.kraken.com/0/public/Ticker?pair=GNOXBT" | jq '.[] | .[].c | .[0]' | tr '.' ',' | |
date +%D" "%T |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment