in reply to Expect Module problem
This works fine on my system.use Expect; $Expect::Debug = 1; my $string= '/usr/bin/ssh 127.0.0.1'; my $exp=Expect->spawn($string) || die "error $!\n"; $exp->expect(2, "password: "); $exp->send("XXXXXXXX\n"); $exp->expect(2,'$'); $exp->send("ls\n"); $exp->expect(2,'$');
Update:
If your goal is to interact with the ssh session after scripting the login, try adding:
after you have finished logging in.$exp->interact();
|
|---|