From 36c0f2f4d8aef72776a337eef05bec8cd0360e83 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 28 Jun 2012 10:09:28 +0200 Subject: Add scripts to download elberfelder from die-bibel.de That is download is shell scripts using curl, parse books and chapters with sed. Then prepare html with sed to be converted to zefania xml using a xsl stylesheet. --- download-chapters.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 download-chapters.sh (limited to 'download-chapters.sh') diff --git a/download-chapters.sh b/download-chapters.sh new file mode 100755 index 0000000..ba29d8e --- /dev/null +++ b/download-chapters.sh @@ -0,0 +1,17 @@ +#!/bin/sh + +mkdir -p chapters/ + +cat book-list | while read buch +do + mkdir -p "chapters/$buch" + ./parse-chapter.sed "books/$buch" | \ + while read url + do + read number + echo $url + + echo "$buch $number" + curl $url > "chapters/$buch/$number" + done +done -- cgit