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
SSH.NET currently does not support executing a command (without shell) with an option to directly write to the stdin of the executed program. A writable stream is needed for that.
This is a critical feature when you need to pipe large amounts of data from SSH.NET to remote commands.
The text was updated successfully, but these errors were encountered:
Ideally it should use something like PipeStream to expose a InputStream for writing instead of raw byte arrays. Also it's worth noting that SendEofmust be called to close stdin. Failing to do that, a program you are executing could end up waiting input forever. Closing this InputStream should do this implicitly so you can signal the program on the other send that you are finished.
SSH.NET currently does not support executing a command (without shell) with an option to directly write to the stdin of the executed program. A writable stream is needed for that.
This is a critical feature when you need to pipe large amounts of data from SSH.NET to remote commands.
The text was updated successfully, but these errors were encountered: