Non so perché lo fai, ma hai due modelli qui. Uno è il tuo "database" e uno è il tuo modello reale. Entrambi sono facili da maneggiare con shtpl . (mio progetto privato, quindi non ampiamente utilizzato, ma sviluppato per risolvere effettivamente quel tipo di problemi)
Con shtpl faresti qualcosa del genere:
Contenuto del file 'configurazione':
template_main=main.txt
template_other=other.txt
text1=whatever
text2=blah
Contenuto del file "database" (ho ipotizzato che il delimitatore sia tab (\ 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
Contenuto di 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
Contenuto di main.txt (other.txt è abbastanza lo stesso):
main.txt template
$data1
$data2
$data3
Quindi eseguendo generatetemplates.sh
$ bash generatetemplates.sh "./configuration"
ci genera first.txt, second.txt e 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
Piccola spiegazione: in generatetemplates.sh è innanzitutto il "database" necessario generato dal tuo file di configurazione. E in secondo luogo per ogni tupel nel database, infine, il corrispondente file Out dal tuo modello In.
Nota: lettura di dati vuoti [123]. Quindi non è possibile con questo approccio.
Quindi, spero che questo sia abbastanza semplice per le tue esigenze.
Divertiti!