public String fetchUrl(URI uri) throws IOException {
ShellCommand shellCommand = ShellCommand.create("/usr/bin/wget", "-q", "-O", "-");
shellCommand.argQuoted(uri.toString());
SshCommand sshCommand = shellCommand.withSsh(sshConfig);
SshCommandExecution execution = sshCommand.run();
return execution.getStdout();
}