do not match own process lol

This commit is contained in:
Alexander Bocken 2023-10-31 13:26:39 +01:00
parent 3bfa50113c
commit 861aa7fa0a
Signed by: Alexander
GPG Key ID: 1D237BE83F9B05E8

12
.local/bin/moodle-dl-update Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
MOODLE_DIR="/home/alex/eth/.moodle"
cd "$MOODLE_DIR"
echo "pgrepping"
pgrep -x moodle-dl
if ! pgrep -x moodle-dl; then
echo "nothing"
[ -f running.lock ] && rm running.lock
moodle-dl >/dev/null 2>&1
else
echo "something"
fi