A while ago, we published a guide about **[Cli-Fyi][1] ** - a potentially useful command line query tool. Using Cli-Fyi, we can easily find out the latest price of a cryptocurrency and lots of other useful details. Today, we are going to see yet another cryptcurrency price checker tool called **" Coinmon"**. Unlike Cli.Fyi, Coinmon is only for checking the price of various cryptocurrencies. Nothing more! Coinmon will check cryptocurrencies' prices, changes right from your Terminal. It will fetch all details from from [coinmarketcap.com][2] APIs. It is quite useful for those who are both **Crypto investors** and **Engineers**.
### Installing Coinmon
Make sure you have Node.js and Npm installed on your system. If you don't have Node.js and/or npm installed on your machine, refer the following link to install them.
Once Node.js and Npm installed, run the following command from your Terminal to install Coinmon.
```
sudo npm install -g coinmon
```
### Check Cryptocurrency Prices From Commandline
Run the following command to check the top 10 cryptocurrencies ranked by their market cap:
```
coinmon
```
Sample output would be:
[![][3]][4]
Like I said, if you run the coinmon without any parameters, it will display the top 10 cryptocurrencies. You can also find top top n cryptocurrencies, for example 20, by using "-t" flag.
```
coinmon -t 20
```
All prices will be displayed in USD by default. You can also convert price from USD to another currency by using "-c" flag.
For instance, to convert the prices to INR (Indian Rupee), run: