blob: 0a45196afea1b552585dd0f95e93eb5146fe6aef (
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
58
59
60
61
62
63
64
65
|
#!/bin/bash
set -e
cd "$(dirname "$0")"
teile=(
In_dieser_lieben_Sommerzeit
Ins_Wasser_faellt_ein_Stein
Da_beruehren_sich_Himmel_und_Erde
Gott_hat_mir_laengst_einen_Engel_gesandt
Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann
Als_Gott_die_Welt_erschaffen
Kanons/Du_bist_mein_ich_bin_dein
)
rm -f *.pre
for teil in "${teile[@]}"
do
(
cd ../../${teil}
sed -n '
s/^[^:]*%\.pdf.*:\s*//
T
s/%/'"${teil##*/}"'/g
p
' Makefile | \
tr ' ' '\n' | \
grep '\.pre$' | \
xargs -r make SPRACHEN_REGEX=/textSII/d "$@"
)
done
{
printf '\n\n'
cat alles.ly
printf '\n\n'
} | \
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
s|%IF \([^=]\+\)=\1%||g
/%IF [^=]\+=[^=]\+%/d
"
done
unset loopLines
fi
echo "${line}"
fi
done > alles.pre
lilypond alles.pre
|