run sh file in background linux code example
Example 1: background script linux
$ nohup serve -s build -l 8080 &
Example 2: how to run .sh file in background linux
$ nohup ./my-shell-script.sh &
$ nohup serve -s build -l 8080 &
$ nohup ./my-shell-script.sh &