nopaque/nopaque-daemon.sh
2021-07-20 15:07:42 +02:00

9 lines
163 B
Bash
Executable File

#!/bin/bash
# The nopaque daemon is essentially just a loop in which the daemon tasks are
# periodically executed
while true; do
flask tasks
sleep 1
done