options.set(OPERATING_SYSTEM, UNIX);
options.set(CONNECTION_TYPE, SFTP);
OverthereConnection connection = Overthere.getConnection("ssh", options);
try {
OverthereProcess process = connection.startProcess(CmdLine.build("cat", "/etc/motd"));
BufferedReader stdout = new BufferedReader(new InputStreamReader(process.getStdout()));
try {
String line;
while((line = stdout.readLine()) != null) {
System.err.println(line);