unable to run multiple scripts in ubuntu code example
Example: ubuntu run multiple commands in one line and let them run after close shell
# Sequential
(myCommand1; myCommand2) &
# or
(myCommand1 &) && (myCommand2 &)
# Parallel
myCommand1 & myCommand2 &