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
using (var sshStream = sshClient.CreateShellStream("C#", 80, 25, 100, 100, 1000)) { new MemoryStream(sshClient.ConnectionInfo.Encoding.GetBytes("echo 'command 1'\r")).CopyTo(sshStream); sshStream.WriteLine("echo 'command 2'"); sshStream.Flush(); }
Expected result: command 1 command 2
Current result: command 2 command 1
My use case: I open embedded resource (somescript.sh) as stream and want to send all content of the somescript.sh to sshStream...
The text was updated successfully, but these errors were encountered:
Fix for issues sshnet#180 sshnet#444 sshnet#301 sshnet#302
b216f41
2830ba9
I have created a discussion #926 for all ShellStream related issues.
Sorry, something went wrong.
This issue has been fixed in the 2024.0.0 version.
drieseng
Successfully merging a pull request may close this issue.
Expected result:
command 1
command 2
Current result:
command 2
command 1
My use case:
I open embedded resource (somescript.sh) as stream and want to send all content of the somescript.sh to sshStream...
The text was updated successfully, but these errors were encountered: