You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
542 B
Bash
24 lines
542 B
Bash
#!/usr/bin/env -S gawk -f
|
|
|
|
BEGIN {FS="\t"} {
|
|
}
|
|
|
|
// {
|
|
gsub(/\(/, "\\(", $2)
|
|
gsub(/\)/, "\\)", $2)
|
|
system("luatex -jobname " NR " " \
|
|
"\\\\def\\\\toindex{" $1 "}" \
|
|
"\\\\def\\\\\\tocity{" $2 "}" \
|
|
"\\\\def\\\\\\toaddress{" $3 "}" \
|
|
"\\\\def\\\\\\toinstitution{" $4 "}" \
|
|
"\\\\def\\\\\\towhom{" $5 "}" \
|
|
"\\\\input{letters.tex}")
|
|
}
|
|
|
|
END {
|
|
system("rm -f letters.pdf")
|
|
system("pdftk *.pdf cat output letters.pdf.backup")
|
|
system("rm -f *.log *.pdf")
|
|
system("mv letters.pdf.backup letters.pdf")
|
|
}
|