Bitcoins

From SkullSpace Wiki
Revision as of 14:34, 4 October 2017 by Takaji (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Info.png This page has been archived. All information in this article is historical.

Scrape last cavirtex trade every 60s and output price

while true; do curl -sk https://www.cavirtex.com/home | grep -m1 Last | awk 'BEGIN{FS=" "};{print $2}'; sleep 60; done


Watch mtgox trades in real time

nc bitcoincharts.com 27007 | grep '"symbol": "mtgoxUSD"' | awk 'BEGIN {FS=":|,"};{print substr($4,2,7) "\t" $6}'