summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgen-bible.sh7
-rwxr-xr-xmake-xml.sh8
2 files changed, 6 insertions, 9 deletions
diff --git a/gen-bible.sh b/gen-bible.sh
index c6e56df..c4eb50e 100755
--- a/gen-bible.sh
+++ b/gen-bible.sh
@@ -1,6 +1,11 @@
#!/bin/sh
-./make-xml.sh
+./list-chapters.sh | while read file
+do
+ echo "$file"
+ ./convert.sed "$file" | \
+ xsltproc --encoding utf-8 --html convert.xsl - > "${file}.xml"
+done
./concat.sh > elberfelder2006.xml
zip elberfelder2006.zip elberfelder2006.xml
diff --git a/make-xml.sh b/make-xml.sh
deleted file mode 100755
index dace25c..0000000
--- a/make-xml.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-
-./list-chapters.sh | while read file
-do
- echo "$file"
- ./convert.sed "$file" | \
- xsltproc --encoding utf-8 --html convert.xsl - > "${file}.xml"
-done