If I am in a situation where I need to execute external commands in sequence, what is the best solution?
For instance, I have two commands "make snapshot" and "backup snapshot" The second cannot start till the first one is complete. If I orderly stick those two commands in a do syntax would they be executed one after another or do I have to manually check and make sure the first one is complete?
For the manual completion check, is it enough to use "system" or rawSystem" and examine their exit code?
I don't fully understand the difference between "system" and "runCommand" functions. Can someone clarify this to me. I can only see they return different values: exit code vs process handle. Any other differences?
Would I rather need to use "runCommand" for the above sequence to work? Do I need to call wait on the process handle?
Thanks.