OpenSSH client supports -T option to disable pseudo-terminal allocation. Can we add this feature to SSH.NET as well?
With this option, the output from remote does not contain control sequences.
It is not user-friendly but program-friendly. Program at client side does not need to parse/draw the screen with control sequences to get the correct output.
There's already SshCommand feature which is similar with this. But SshCommand does not support interactions. SshCommand runs and ends.
https://www.man7.org/linux/man-pages/man1/ssh.1.html
-T Disable pseudo-terminal allocation.
OpenSSH client supports
-Toption to disable pseudo-terminal allocation. Can we add this feature to SSH.NET as well?With this option, the output from remote does not contain control sequences.
It is not user-friendly but program-friendly. Program at client side does not need to parse/draw the screen with control sequences to get the correct output.
There's already
SshCommandfeature which is similar with this. ButSshCommanddoes not support interactions.SshCommandruns and ends.https://www.man7.org/linux/man-pages/man1/ssh.1.html
-T Disable pseudo-terminal allocation.