我想将vim与renci.sshnet一起使用。我该怎么办?
我想像腻子或终端一样使用它。
using renci.sshnet;
//....
using (var ssh = new SshClient("192.168.51.128", "root", "passwd"))
{
try
{
Console.WriteLine("Connected...\n");
ssh.Connect();
Console.WriteLine("walcome server\n");
while (true)
{
string command = Console.ReadLine();
if (command == "" || command == null)
{
command = "\n";
}
SshCommand sshcmd = ssh.RunCommand(command);
Console.WriteLine(sshcmd.Result);
}
ssh.Disconnect();
}
catch (Exception err)
{
Console.WriteLine(err);
}
}
有更有效的方法吗?
如果您运行vim编辑器,如图所示,则无法响应1