C#SharpSSHライブラリを介してLinuxサーバとSSH接続を確立し、コマンドを実行


Unity 3 Dプロジェクト開発ツールでは、SSHを使用してリモートLinuxサーバに接続してコマンドを実行し、SharpSSHリンクライブラリを見つけたら、この方法で使用できます.
  /// 
    /// SSH    Linux   ,     
    /// 
    ///   Linux   IP   
    ///    
    ///     
    ///   
    /// 
    public static bool RunSSHCommands(String host, String username, String password, String[] commands)
    {
        if (commands == null || commands.Length == 0)
            return false;

        try
        {
            SshExec exec = new SshExec(host, username);
            exec.Password = password;

            //XXLog.Log(String.Format("[{0}]Connecting...", host));
            exec.Connect();
            //XXLog.Log("OK");

            foreach (String command in commands)
            {
                if (command == null || command.Trim().Length == 0) continue;

                string output = exec.RunCommand(command);
                //XXLog.Log(output);
            }

            //XXLog.Log("Disconnecting...");
            exec.Close();
            //XXLog.Log("OK");

            return true;
        }
        catch (Exception e)
        {
            XXLog.Log(e.Message);
            return false;
        }
    }