in reply to Re: Follow up: String Formatting
in thread Follow up: String Formatting
and$ssh->login($username, "$password");
andmy $newpass = $password; $ssh->login($username, $newpass);
All to no avail. The only thing that has worked is either me hardcoding the password into my script or me using the Data::Dumper technique.$ssh->login($username, scalar($password));
|
|---|