10 lines
241 B
Bash
10 lines
241 B
Bash
#!/bin/bash
|
|
|
|
USER=$(whoami)
|
|
if [ "$USER" = "level5" ]; then
|
|
if [ ! -f /home/level5/.timer/started ]; then
|
|
touch /home/level5/.timer/started
|
|
nohup python3 /usr/local/bin/Microsoft.py >/tmp/timer.log 2>&1 &
|
|
fi
|
|
fi
|
|
exit 0 |