This function returns a vector of strings that is the entire output of the remote system since
the last call to execute
printout(connection, split = "\n")
| connection | An Rsch_connection object |
|---|---|
| split | passed on to |
generally a vector of strings representing the console output resulting from the last
command issued to execute.
# NOT RUN { connection <- get_connection(host = "cuckoo.lbnl.gov", user = "cliff", password = "TopSecret") execute(connection,"grep \"nuclear\" /*") results <- printout(connection) # }