onpoint/autocompile.sh

6 lines
138 B
Bash

#! /bin/bash
# Requirements: inotify-tools, python3
while inotifywait -e close_write ./slides/*.md; do
python3 ./onpoint/main.py .
done