Ich weiß nicht, warum Sie das tun, aber Sie haben hier zwei Vorlagen. Eine ist Ihre 'Datenbank' und eine ist Ihre echte Vorlage. Beide sind mit shtpl einfach zu handhaben . (privates Projekt von mir, also nicht weit verbreitet, aber entwickelt, um tatsächlich diese Art von Problemen zu lösen)
Mit shtpl würden Sie so etwas tun:
Inhalt der Datei 'Konfiguration':
template_main=main.txt
template_other=other.txt
text1=whatever
text2=blah
Inhalt der Datei 'Datenbank' (ich nahm an, dass das Trennzeichen tab (\ t) ist):
#% . "$CONFFile"
#% if [ -z "$template_main" ] || [ -z "$template_other" ] || \
#% [ -z "$text1" ] || [ -z "$text2" ]; then
#% printf "database could not be generated!\n" > /dev/stderr
#% exit 1
#% fi
#%# outputfile template data1 data2 data3
first.txt $template_main $text1 abcd 1234
second.txt $template_main $text2 efgh 5678
third.txt $template_other $text1 ij 90
Inhalt von generatetemplates.sh:
#!/bin/bash
if [ ! -s "$CONFFile" ]; then
if [ ! -s "$1" ]; then
printf "CONFfile is not set or empty!\n"
exit 1
else
export CONFFile="$1"
fi
fi
DB="$( bash -c "$( shtpl database )" )"
if [ -z "$DB" ]; then
printf "Database is empty! Abort.\n"
exit 2
fi
IFS=$'\t'
printf "%s" "$DB" | while read "Out" "In" "data1" "data2" "data3"; do
data1="$data1" data2="$data2" data3="$data3" \
bash -c "$( shtpl "$In" )" > "$Out"
done
Inhalt von main.txt (other.txt ist ziemlich gleich):
main.txt template
$data1
$data2
$data3
Führen Sie also generatetemplates.sh aus
$ bash generatetemplates.sh "./configuration"
generiert uns first.txt, second.txt und Third.txt.
$ cat first.txt | $ cat second.txt | $ cat third.txt
main.txt template | main.txt template | other.txt template
whatever | blah | whatever
abcd | efgh | ij
1234 | 5678 | 90
Kleine Erklärung: In generatetemplates.sh wird zuerst die benötigte 'Datenbank' aus Ihrer Konfigurationsdatei generiert. Und zweitens für jedes Tupel in der Datenbank schließlich die entsprechende Out-Datei aus Ihrer In-Vorlage.
Hinweis: Leere Daten [123] können nicht gelesen werden. Mit diesem Ansatz ist dies also nicht möglich.
Hoffen Sie also, dass dies für Ihre Bedürfnisse einfach genug ist.
Habe Spaß!