#!/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