Answers for "Run a command in the background witch automatically rerun Raw"

1

Run a command in the background witch automatically rerun Raw

#!/bin/bash

if [[ $1 == "--non-background" ]]
then
        yourCommand
        sleep 120
        ./start.sh
        exit
else
        screen -AmdS soulbot ./start.sh --non-background
fi
Posted by: Guest on May-04-2020

Code answers related to "Run a command in the background witch automatically rerun Raw"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language