13 lines
264 B
Bash
Executable File
13 lines
264 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
dest_file="$(realpath "$(dirname "$0")")/data/presentation_$(date +%Y-%m-%d).tex"
|
|
|
|
echo Reading old protocols
|
|
./read_db.sh
|
|
echo Getting E-Mail
|
|
./read_ubmails.py
|
|
echo Generating
|
|
./generate.py --presentation >"$dest_file"
|
|
|
|
./compile_presentation.sh
|