dotfiles/.local/bin/moodle-dl-update

8 lines
163 B
Plaintext
Raw Normal View History

2023-10-31 13:26:39 +01:00
#!/bin/sh
MOODLE_DIR="/home/alex/eth/.moodle"
cd "$MOODLE_DIR"
if ! pgrep -x moodle-dl; then
[ -f running.lock ] && rm running.lock
moodle-dl >/dev/null 2>&1
fi