What I'm looking for would be similar to the ros tool roslaunch that takes an config file listing of nodes to execute or other launch files, runs them with arguments from the config file, combines all the stdout into stdout for the overarching launch process, and brings down all the processes if main launch process is killed- but that is restricted to just ros nodes that rosrun
can execute.
I'd like to be able to run anything that could otherwise be run individually from the same command line.
There are existing tools meant for container management (but none written in rust?), but I don't want to have to launch everything in containers.
It doesn't have to be written in rust but that would be preferable, especially if I need to fork and modify it.
With or std::process::Command or tokio::process::Command it looks like I could make a basic version myself, but if there's something similar out there I'd still like to see how it works.