I want to run a few commands, each of which doesn\'t quit until Ctrl-C is pressed. Is there something I can run to run all of them at once, and Ctrl-C will quit them all? Th
Based on comment of @alessandro-pezzato. Run multiples commands by using & between the commands.
&
Example:
$ sleep 3 & sleep 5 & sleep 2 &
It's will execute the commands in background.