Bunu neden yaptığını bilmiyorum, ama burada iki şablonun var. Biri sizin 'veritabanınız', diğeri ise gerçek şablonunuz. Her ikisi de shtpl ile kullanımı kolaydır . (benim özel proje, bu yüzden yaygın kullanımda değil, ama aslında bu tür sorunları çözmek için geliştirilmiştir)
Shtpl ile böyle bir şey yapardınız:
'Configuration' dosyasının içeriği:
template_main=main.txt
template_other=other.txt
text1=whatever
text2=blah
'Veritabanı' dosyasının içeriği (Sınırlayıcının sekme olduğunu varsaydım (\ t)):
#% . "$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
Generatetemplates.sh içeriği:
#!/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
Main.txt içeriği (other.txt aynıdır):
main.txt template
$data1
$data2
$data3
Yani generatetemplates.sh yürütmek
$ bash generatetemplates.sh "./configuration"
bize first.txt, second.txt ve third.txt dosyalarını üretir.
$ 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
Küçük açıklama: generatetemplates.sh içinde ilk olarak yapılandırma dosyanızdan oluşturulan 'veritabanı' gereklidir. İkincisi, veritabanındaki her tupel için nihayet In-şablonunuzdaki karşılık gelen Out-file.
Not: Boş bir veri [123] okunan sorunları. Dolayısıyla bu yaklaşımla mümkün değil.
Yani, umarım bu ihtiyaçlarınız için yeterince basittir.
İyi eğlenceler!