Suppressing Terminal Echo (General questions)
Hi,
I've been using your product for a long time. It's been working great! I am currently trying to suppress the echo of characters that I send to the ssh Server. For example, if I send the command ls , the first line of the response from the server is ls .
From reading the documentation, the simplest solution would be to set AllocatePty = False, but this causes the connection to fail. Any other suggestions? Is there a different TerminalType (besides vt100 ) that suppresses the echo?
Thanks,
Jon
Re: Suppressing Terminal Echo
Jon,
this isnt' local echo - this is actually returned from the server. So, either send some command that will not echo your commands back, or always ignore first line of the response.
Re: Suppressing Terminal Echo
Wow,
You guys are fast!
Any recommendation on how to suppress that echo from the server?
Thanks,
Jon
Re: Suppressing Terminal Echo
on Unix? nothing crosses my mind.
Did you try using Command property so only one command is executed, and you get only response you want?
Re: Suppressing Terminal Echo
Thanks, just removing the command that I sent will work fine.