Made a script to do this.
Install the prerequisites: apt-get install wget calibre tidy, or whatever works on your favorite OS.
apt-get install wget calibre tidy
Then do
#!/bin/bash
TMPDIR=$(mktemp -d) pushd $TMPDIR wget -H -np -nd -k -p -r -l 1 http://pwnee.com/Sequences/list.html tidy -m *.html ebook-convert list.html lesswrong.epub popd cp $TMPDIR/lesswrong.epub .
Made a script to do this.
Install the prerequisites:
apt-get install wget calibre tidy
, or whatever works on your favorite OS.Then do
#!/bin/bash
TMPDIR=$(mktemp -d)
pushd $TMPDIR
wget -H -np -nd -k -p -r -l 1 http://pwnee.com/Sequences/list.html
tidy -m *.html
ebook-convert list.html lesswrong.epub
popd
cp $TMPDIR/lesswrong.epub .