#!/bin/sh
# Fetch original from web archive

# Fetching the LaTeX+HTML source in Svedish works
wget --quiet -N https://web.archive.org/web/20120316052902/http://www.df.lth.se:80/~triad/book/files/cfi.tex.zip
wget --quiet -N https://web.archive.org/web/20120316052902/http://www.df.lth.se:80/~triad/book/files/cfi.html.zip

exit 0

# This does not work as expected
wget --quiet --recursive --level=1 --no-parent --page-requisites --adjust-extension --convert-links --directory-prefix=. \
     https://web.archive.org/web/20110201022105/http://home.c2i.net:80/nirgendwo/cdne/
