Crypto CLI is a lightweight command line interface written in one line to fetch the latest cryptocurrency prices and display them in the terminal.
All data is sourced from coinmarketcap api
First install jq which is a command line json parser here
After you have installed jq, run the following commmand in your terminal:
curl "https://raw.githubusercontent.com/dillionverma/crypto-cli/master/coin" -o /usr/local/bin/coin && chmod +x /usr/local/bin/coin
The top 10 cryptocurrencies are shown by default by entering
coin
For more coins, simply pass a number argument
coin 100
To get a specific price, simply use grep
coin 100 | grep VTC
note use "-i" flag on grep for case insensitive search
git clone https://github.com/dillionverma/crypto-cli.git
cd crypto-cli
vim coin
MIT License