blob: b00fa3e4af26ef3260c05a3f401356c55c06ebb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#!/bin/bash
set -e
cd "$(dirname "$0")"
teile=(
Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht
Herr_groszer_Gott
Halleluja
Er_ist_mein_Hirt
#Lobgesang_der_Maria
Tanzen_und_Springen
Grosz_ist_der_Herr
Die_beste_Zeit_im_Jahr_ist_mein
Fuellt_die_Kruege_mit_Wasser
Alle_Tage_alle_Naechte
Abendruhe
Schoen_ist_die_Erde
Bleib_bei_mir_Herr
Shalom_aleichem
)
rm -f *.pre
for teil in "${teile[@]}"
do
(
cd ../../${teil}
make "$@" ${teil##*/}.pre
)
done
while read -r line
do
if [[ "${line}" = '%LOOP%'* ]]
then
loopLines="${loopLines}
${line#%LOOP%}"
else
if [ -n "${loopLines}" ]
then
for teil in "${teile[@]}"
do
echo "${loopLines}" | \
sed "
s|%TEIL%|${teil}|g
s|%TEIL-BASE%|${teil##*/}|g
"
done
unset loopLines
fi
echo "${line}"
fi
done < alles.ly > alles.pre
lilypond alles.pre
|