i am using the library SharpSSH but when i redirect the output on a text box the output get cut if it is too long. Is there anyway to increase the buffer of the output?
So far this is the code that i have:
SshShell ssh = new SshShell("myhost","myid","mypass");
ssh.Connect();
ssh.WriteLine("ll |grep "+txt_display.Text);
var resp = ssh.Expect("drwx");
txt_display2.Text = txt_display2.Text + resp;
Look forward hearing from you.
Jar.