execCommandsInShell method

List<String> execCommandsInShell(
  1. List<String> commands
)

experimental as it may not be able to detect the prompt execute commands in the interactive shell the order of execution is based on the order of the command list and return a list with the response of each command in the order of execution

Implementation

List<String> execCommandsInShell(List<String> commands) {
  return libsshBinding.execCommandsInShell(mySshSession, commands);
}