diff options
Diffstat (limited to 'bin/cal-render.sh')
-rwxr-xr-x | bin/cal-render.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bin/cal-render.sh b/bin/cal-render.sh new file mode 100755 index 0000000..9203f7e --- /dev/null +++ b/bin/cal-render.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +# Depends: ical2html + +set -eu + +OUTDIR=events + +mkdir --parents "$OUTDIR/study" "$OUTDIR/moodle" + +icalmerge _CALENDARS/study/*.ics "$OUTDIR"/study/study.ics +icalmerge _CALENDARS/moodle/*.ics "$OUTDIR"/moodle/moodle.ics + +ical2html --monday --title "RUC HumTek-23 Study" 20240201 P140D "$OUTDIR"/study/study.ics > "$OUTDIR"/study/index.html +ical2html --monday --title "RUC HumTek-23 Moodle" 20240201 P140D "$OUTDIR"/moodle/moodle.ics > "$OUTDIR"/moodle/index.html |