diff --git a/bitcoin.bbescraper/fetch.sh b/bitcoin.bbescraper/fetch.sh new file mode 100755 index 0000000..2fcdf89 --- /dev/null +++ b/bitcoin.bbescraper/fetch.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +# don't actually use this, it hammers the server unnecessarily. +# use jgarzik's getblock patch @ +# http://gtf.org/garzik/bitcoin/patch.bitcoin-getblock + +exit 1 + +x=1 + +while true; do + B=`wget -O - http://blockexplorer.com/b/$x | grep keywor | \ + awk -F, '{print $6}' | tr -d "\"> "` + if [ ! -e $x.json ]; then + wget -O $x.json http://blockexplorer.com/rawblock/$B + fi + x=$(( $x + 1 )) +done