Open jonnitto opened 3 years ago
Do you have an example how to use pty? I've tried it with ssh.execCommand(command, { execOptions: { pty: true } }) but I didn't get it running…
pty
ssh.execCommand(command, { execOptions: { pty: true } })
@jonnitto What's the use case? Whenever I personally need pty, I just requestShell and work with it directly since it's the "real" thing
requestShell
I want to edit a file on a server with an editor like vim or nano.
Do you have an example how to use
pty
? I've tried it withssh.execCommand(command, { execOptions: { pty: true } })
but I didn't get it running…