Writes data into the specified SSH session.
cMySession is sshSession
// The session was started by SSHConnectShell.
// Charact(10) is used to end the command line to send.
// Position in the /var/log folder
SSHWrite(cMySession, "cd /var/log" + Charact(10))
// Ask to read the lines containing "error"
SSHWrite(cMySession, "grep -i error /var/log/messages" + Charact(10))
Syntax
<Result> = SSHWrite(<SSH session> , <Data>)
<Result>: Boolean
- True if the data was successfully sent,
- False if an error occurred. ErrorInfo returns more information on the error.
<SSH session>: sshSession variable
Name of the sshSession variable corresponding to the SSH session to be used.
<Data>: Buffer
Data that will be written into the SSH session.
Business / UI classification: Business Logic