!7 static S host = "tinybrain.de"; static S user = "root"; static S command = "df -hi ."; static int timeout = 30; p-tt { print("Command: " + command); print("Connecting to " + host + " as " + user + "..."); S output = quickSSH2(user, host, command, timeout); print(asciiHeading("OUTPUT") + "\n"); print(output); }