You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to execute a long-running command on a remote server and stream the input back to the host. Is this possible with the Golang crypto/ssh library, as far as you know? If so, could it be implemented here as an io.Reader, or some other form of async reader?
The text was updated successfully, but these errors were encountered:
I'm having some difficulties getting this to work, relevant question here. Will try more once I get a better handle on things!
I figured it out! I will have some function that returns output as it is ready in an io.Reader, another that returns it in a line scanner, and one that returns all input at once (Run).
I'd like to execute a long-running command on a remote server and stream the input back to the host. Is this possible with the Golang crypto/ssh library, as far as you know? If so, could it be implemented here as an io.Reader, or some other form of async reader?
The text was updated successfully, but these errors were encountered: