Say I need to source a shell script via one of these two examples:
$ source setup.bash
$ . setup.sh
and then run a command included in PATH as a result of the previous step. How could you set up a method to perform these two steps using the Dart IO Process API? Is it necessary to manually pass the environment from one to the other somehow?