bash: Getting a Cryptocurrency Price From Console Using Ergopad

#!/bin/bash printf -v coin '%s' -1 # ergopad.sh sigrsv price() { # A function that pulls cryptocurrency price data from ergopad # and formats it into a multi-currency banner for the console curl -X 'GET' 'https://ergopad.io/api/asset/price/'"$1"'' \ -H 'accept: application/json' 2> /dev/null | # sends download data to /dev/null sed 's/.*://' | # Removes everything … Continue reading bash: Getting a Cryptocurrency Price From Console Using Ergopad