Hi all..
What is the best way to open a SSH connection while the script is executed, see:
I use openssh on linux
<?
...
...
system ("ssh $user@$host $command");
...
...
?>
but the problem is: How can I pass for ssh program the user password? There isn't any option for ssh to specify the password, just it is prompted...
Any clue?