Bash shell script to check the stock price of a company

I wrote a quick little shell script this morning using the YAHOO Finance API to show the stock price of my company in the terminal. This works for any company that’s publicly traded. Just change “JIVE” to your desired company’s stock ticker code.

In ~/.bash_profile, I added a function to make the CURL request to the API:

function jive_stock() {
    curl -s 'http://download.finance.yahoo.com/d/quotes.csv?s=JIVE&f=l1'
}

(If you’re on Linux, add this to your ~/.bashrc instead)

Below this, I added a bash alias to call the function. An alias is essentially a shortcut for a command.

alias jivestock=jive_stock

Now, reload ~/.bash_profile.

source ~/.bash_profile

And call your alias command.

$ jivestock
6.72

Updated:

Comments