Let's say I've just started a command that will take a long time to execute, like hg clone the entire Pypy development set. Halfway through, I decide I'd like to run another process, like hg up, once the first one returns. Is there a way to attach a command to execute when the process returns, without stopping the command/process and then restarting it as a chained command? command/process?
| |||
|
feedback
|
|
Assuming you're using
In the example above, the The thing I've not found is a way to put this additional command into the background to allow you to carry on working in the same shell. There must be a way to do it though - this should hopefully give you a start. | ||||
|
feedback
|