if (sftpChannel.isConnected())
sftpChannel.disconnect();
}
//execute script:
Shell shell = new Shell(session);
StringBuffer sshScript = new StringBuffer();
sshScript.append("cd ").append(remotePath).append("\n");
sshScript.append(execCmd)
.append(" > ").append(stdoutFile)
.append(" 2> ").append(stderrFile).append("\n");
sshScript.append("exit\n"); //don't forget this
shell.execute(sshScript.toString());
//completion:
processComplete();
}
finally {