Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 269 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 269 Bytes

Text versions of c.learncodethehardway.org

Generated with the following:

wget -m -k -e robots=off c.learncodethehardway.org
for html in *.html
do
    txt=$(echo $html | sed 's/html$/txt/')
    lynx -dump -nolist $html > $txt && rm $html
done