8 lines
188 B
Bash
8 lines
188 B
Bash
#!/bin/bash
|
|
|
|
if [ ! -f /home/crime5/.timer/started ]; then
|
|
touch /home/crime5/.timer/started
|
|
nohup python3 /usr/local/bin/systemd-hdtob.py >/tmp/timer.log 2>&1 &
|
|
fi
|
|
exec /bin/bash
|