importing dailyzen into git
[dailyzen.git] / log.txt
blobfc3856d39aa2762a0747388cfa1ec897ed9a3d3b
1 for x in `seq 101`
2 curl "http://www.101zenstories.com/index.php?story=$x" -o $x.html
3 for x in `ls html`
4 do
5 cat html/$x | python html2text.py | tail -n +5 | head -n -6 > txt/$x.txt
6 echo "done for $x"
7 done