If you want each command to be executed in order, command1 && command2 && command3 && command4 && command5 should do. You can save it in a shell script and call the script when you need to.
If the execution order is not so important,
command1 & command2 & command3 & command4 & command5 &
.
You can also mix and match if you need a different execution order.
source share