mprocs

Run multiple commands in parallel with a shared terminal UI.

brewmacoslinux
Try with needOr install directly
Source

About

Run multiple commands in parallel

Commands

mprocs

Examples

run multiple build commands at the same time$ mprocs 'npm run build' 'cargo build' 'go build'
monitor multiple services during development$ mprocs 'npm start' 'python server.py' 'docker-compose up'
execute multiple long-running tasks and watch output$ mprocs 'make test' 'make lint' 'make format'
run commands from a configuration file$ mprocs -c mprocs.yaml
run database migration and server startup together$ mprocs 'migrate up' 'npm run dev'