You are taking your chances with system.util.execute
. I don't think it waits for the process to run, so those three commands could execute out of order. Use java's ProcessBuilder
to ensure things are sequential (and you can check for success).
{ Also, please format your code properly. Edit your comment, highlight the code, and click the </> button. }