diff options
Diffstat (limited to 'Konzerte')
-rw-r--r-- | Konzerte/2017_10_26/alles.ly | 4 | ||||
-rwxr-xr-x | Konzerte/2017_10_26/make | 8 |
2 files changed, 7 insertions, 5 deletions
diff --git a/Konzerte/2017_10_26/alles.ly b/Konzerte/2017_10_26/alles.ly index 1a42b64..ca92794 100644 --- a/Konzerte/2017_10_26/alles.ly +++ b/Konzerte/2017_10_26/alles.ly @@ -1,5 +1,3 @@ - -%LOOP%\include "../../%TEIL%/%TEIL%.pre" - +%LOOP%\include "../../%TEIL%/%TEIL-BASE%.pre" diff --git a/Konzerte/2017_10_26/make b/Konzerte/2017_10_26/make index fbb88eb..b00fa3e 100755 --- a/Konzerte/2017_10_26/make +++ b/Konzerte/2017_10_26/make @@ -5,6 +5,7 @@ set -e cd "$(dirname "$0")" teile=( + Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht Herr_groszer_Gott Halleluja Er_ist_mein_Hirt @@ -26,7 +27,7 @@ for teil in "${teile[@]}" do ( cd ../../${teil} - make "$@" ${teil}.pre + make "$@" ${teil##*/}.pre ) done @@ -42,7 +43,10 @@ ${line#%LOOP%}" for teil in "${teile[@]}" do echo "${loopLines}" | \ - sed "s|%TEIL%|${teil}|g" + sed " + s|%TEIL%|${teil}|g + s|%TEIL-BASE%|${teil##*/}|g + " done unset loopLines fi |