We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I looked into sshex to get some ideas.
KinoSSH works like this:
renders a new xterm, starts a connections and opens a channel with pty
openes a new channel to communicate with the open connection
runs a command inside the specific channel doesn't wait for a response
waits for the response
listens for ssh data. Can be consumed by Kino.listen()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I looked into sshex to get some ideas.
KinoSSH works like this:
Kino.SSH.connect()
renders a new xterm, starts a connections and opens a channel with pty
Kino.SSH.open_channel()/close_channel()
openes a new channel to communicate with the open connection
Kino.SSH.run()
runs a command inside the specific channel
doesn't wait for a response
Kino.SSH.cmd!()
waits for the response
Kino.SSH.stream()
listens for ssh data. Can be consumed by Kino.listen()
The text was updated successfully, but these errors were encountered: