gpt4 book ai didi

c# - 使用 sshnet 执行 unix 脚本

转载 作者:太空宇宙 更新时间:2023-11-03 20:08:27 26 4
gpt4 key购买 nike

我正在尝试通过 SSH 在我的 UNIX 机器上执行 perl 脚本。我已经设法连接到机器并执行“ls”和“man chmod”,但是当我尝试“perl/test/temp.pl”或“perl a”时,我没有得到任何回复。

我使用的代码如下

PasswordConnectionInfo connectionInfo = new PasswordConnectionInfo(host, user,pass);
using (var client = new SshClient(connectionInfo))
{
client.Connect();
var cmd = client.CreateCommand(script);
string result = cmd.Execute(script);
var reader = new StreamReader(cmd.OutputStream);
var output = reader.ReadToEnd();
Console.Out.WriteLine(result + "_output:" + output);
}

有人遇到相同或相似的问题吗?

最佳答案

尝试:

client.Connect();
SshCommand cmd = client.RunCommand(message);
var output =cmd.Result;

关于c# - 使用 sshnet 执行 unix 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21529972/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com