I have an issue on capturing the ssh script output onto the browser as it executes rather than having it in the end. script written-
$descriptorspec = array(
0 => array("pipe","r"),
1 => array("pipe","w"),
2 => array("file","./error.log","a")
) ;
$cwd = 'path/path1' ;
for($counter=1;$counter<= 10;$counter++)
{
$cmd="sudo test.sh arg1 arg2 arg3";
$process = proc_open('ssh user@server', $descriptorspec, $pipes, $cwd) ;
if (is_resource($process))
{
fwrite($pipes[0], $cmd) ;
fclose($pipes[0]) ;
echo stream_get_contents($pipes[1]) ;
fclose($pipes[1]) ;
$return_value = proc_close($process);
echo "$counter=command returned $return_value<br>";
}
}
Shell script takes 10mins to execute. if the $counter=10 then it taking to much time to get the real output thrown on screen. i require that it keeping on showing the stream output as it executes so that we know whats happening. Is there case of buffering or? please help me to find the solution.