其他命令似乎都可以正常工作,但似乎无法使用ssh.net库上的RunCommand()发送“ /”。我需要更改工作目录才能使用“ cd / home / debian”运行程序。但是,当我发送此行时,似乎什么都没有发生。我仍然留在主目录中。我该如何解决这个问题?
// start the connection
var client = new SshClient (host, user,password);
client.Connect();
command = textBoxCommand.Text; //taking the command from textbox
if (command != "") //unless the command is empty
{
SshCommand sc = client.CreateCommand(command);
sc.Execute(); //run command
textBoxRecieved.AppendText(command);
textBoxRecieved.AppendText("\n");
string answer = sc.Result;
answer = answer.Replace("\n", " ");
textBoxRecieved.AppendText(sc.Error.Replace("\n", " "));
textBoxRecieved.AppendText(answer);
textBoxRecieved.AppendText("\n");
textBoxCommand.Clear();
}
}
答案 0 :(得分:2)
实际上,cd命令正在运行,但问题是每个单独的命令都是从主目录执行的。因此,当我用pwd命令检查目录时,我发现我仍然在主目录中,因为新命令是在主目录中执行的。
对于任何遇到此问题的人,您可以通过以下方式简单地发送需要一起连续执行的命令:
SshCommand sc = client.CreateCommand("cd /home/debian && pwd");