summaryrefslogtreecommitdiff
path: root/Pop_Messe/helferlein
blob: 53b10ca9097361027264d9dcf74ba624d74b4257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

declare -A teile
teile["kyrie"]="Kyrie"
teile["gloria"]="Gloria"
teile["sanctus"]="Sanctus"
teile["benedictus"]="Benedictus"
teile["agnus_dei"]="AgnusDei"

for s in ${!teile[@]}
do
  rm -rf "${s}"
  mkdir "${s}"
  for t in artikulation stimmen texte
  do
    sed "s|%%s|$s|g;s|%%S|${teile[${s}]}|g" template_${t}.ly > ${s}/${t}.ly
  done
  sed "s|%%s|$s|g;s|%%S|${teile[${s}]}|g" template.ly > ${s}/${s}.ly
  cp Makefile.template ${s}/Makefile
done