Hello,
I readed that the ssh API create always a new session for a Command, so I executed my command like this:
command1; command2
I readed that the ssh API create always a new session for a Command, so I executed my command like this:
command1; command2
string command = "ulimit; Parameters[2].ToString";
var cmd = ssh.CreateCommand(command);
cmd.Execute();
So, he execute ulimit and other function, but it stops like after 2 mins, because of CPU time limit exceededWhen I self run this in PuttY (ulimit and then my command) it's working fine.