Duke's utils
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

8 lines
306 B

#!/bin/sh
# Poor man's BTC price checker. Had problems with both CPAN and Ruby gems. This just works.
echo -n "1 BTC = "
file="/tmp/$$.btc"
GET http://twitter.com/bitcoinprice > $file
grep js-tweet-text $file | head -n1 | sed 's/<p class="js-tweet-text">The price of bitcoin is now //' | sed 's!</p>!!g'