Answers for "ubuntu run multiple commands in one line and let them run after close shell"

0

ubuntu run multiple commands in one line and let them run after close shell

# Sequential
(myCommand1; myCommand2) &
# or
(myCommand1 &) && (myCommand2 &)

# Parallel
myCommand1 & myCommand2 &
Posted by: Guest on June-10-2020

Code answers related to "ubuntu run multiple commands in one line and let them run after close shell"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language