Tamir.SharpSsh 重定向输出 (Sha1)

Tamir.SharpSsh Redirect Output (Sha1)

我正在使用 Tmir.SharpSsh - SshExec 方法向远程 SSH 服务器发送一些命令。

问题是这个方法或它创建的某个线程将输出发送到我的控制台windows ("Sha1")。

我想问问是否有人知道我可以禁用此打印或将其重定向到某个临时文件。

    public static bool OpenConnection (ConnectionInfo info)
    {
        string command = "nslookup " + info.IP + "| grep \"name = \" | awk -F\" = \" '{print }' | cut -d\".\" -f-1";
        exec = new SshExec(info.IP, info.UserName,info.Password);

        try
        {

            exec.Connect();
            if (exec.Connected)
            {
                Console.WriteLine("Connection to {0} is successfully", info.IP);
                info.Hostname=(exec.RunCommand(command)).Trim().ToUpper();//retrive Hostname from the RPA
                return true;
            }

            else
                return false;

        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
            return false; 
        }

    }

您必须在文件 HMACSHA1.cs

中禁用名为 public byte[] doFinal() 的方法中的行 Console.WriteLine("Sha1");