diff options
-rwxr-xr-x | concat.sh | 5 | ||||
-rwxr-xr-x | download-chapters.sh | 3 | ||||
-rwxr-xr-x | list-chapters.sh | 5 |
3 files changed, 8 insertions, 5 deletions
@@ -11,10 +11,11 @@ cat book-list | while read buch do echo "<biblebook bname=\"$buch\" bnumber=\"$j\">" + buchdir=$(echo "$buch" | sed "s/ /_/g") i=1 - while [ -e "chapters/$buch/$i" ] + while [ -e "chapters/$buchdir/$i" ] do - cat "chapters/$buch/$i.xml" | sed 1d + cat "chapters/$buchdir/$i.xml" | sed 1d i=$((i+1)) done diff --git a/download-chapters.sh b/download-chapters.sh index ba29d8e..facaeeb 100755 --- a/download-chapters.sh +++ b/download-chapters.sh @@ -12,6 +12,7 @@ do echo $url echo "$buch $number" - curl $url > "chapters/$buch/$number" + buchdir=$(echo "$buch" | sed "s/ /_/g") + curl $url > "chapters/$buchdir/$number" done done diff --git a/list-chapters.sh b/list-chapters.sh index 0964982..df0f241 100755 --- a/list-chapters.sh +++ b/list-chapters.sh @@ -3,9 +3,10 @@ cat book-list | while read buch do i=1 - while [ -e "chapters/$buch/$i" ] + buchdir=$(echo "$buch" | sed "s/ /_/g") + while [ -e "chapters/$buchdir/$i" ] do - echo "chapters/$buch/$i" + echo "chapters/$buchdir/$i" i=$((i+1)) done done |