how to run process in background in linux code example
Example 1: linux run task in background
[command] 2> /dev/null &
Example 2: background script linux
$ nohup serve -s build -l 8080 &
[command] 2> /dev/null &
$ nohup serve -s build -l 8080 &