-
-
Notifications
You must be signed in to change notification settings - Fork 4
Process Start Example
This example starts a command on the remote machine and reads from its StdOut stream. The hypothetical command we're running is somecommand --foo-bar
, and we want to use the sudo
operation to run our command as root. Rather than trying to interact with the sudo
password prompt we pass the -S
flag to tell it to read the password from stdin. At which point we can write the password to stdin ourselves or echo it through a pipe in the command line. Our hypothetical command might expect the user to type "y" and press Enter, for example to accept a license agreement, so we emulate the behavior of the yes
command by writing y+eol
over and over to stdin.
Dim sh As SSH.Channel = SSH.OpenChannel("ssh://user:password@public.example.com/")
sh.DataMode = SSH.ExtendedDataMode.Merge ' redirect stderr to stdout
Call sh.Execute("echo mypassword | sudo -S somecommand --foo-bar")
Dim result As String
Do Until sh.EOF
Call sh.Poll()
If sh.BytesReadable > 0 Then
result = result + sh.Read(sh.BytesReadable, 0) ' 0 indicates StdOut/In
End If
If sh.BytesWriteable > 1 Then
sh.Write("y" + EndOfLine.Unix, 0) ' emulate the 'yes' command
End If
Loop
sh.Close()
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2018-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.