http://www.perlmonks.org?node_id=715865


in reply to Re^2: Expect.pm control terminal width
in thread Expect.pm control terminal width

Drop the quotation marks (the ones inside the qw):
$object->stty(qw(cols 200));
What you have is passing "cols and 200" to stty, which it does not recognize (as indicated in the error messages). Also note that according to the docs, you probably want to be using the slave side of the pty:
$object->slave->stty(qw(cols 200));

Replies are listed 'Best First'.
Re^4: Expect.pm control terminal width
by jmclark (Novice) on Oct 08, 2008 at 13:54 UTC
    Yea, thats what I was saying, I tried without quotes as well.
    Basically below is what I have:
    $acnsex = new Expect(); $acnsex->slave->stty(qw(cols 200)); $acnsex->spawn("ssh -q -o 'UserKnownHostsFile ./output/keys.txt' -o 'S +trictHostKeyChecking no' -l $username $acns"); $acnsex->log_user(0); $acnsex->expect(10, '-re', 'password:');
Re^4: Expect.pm control terminal width
by jmclark (Novice) on Oct 08, 2008 at 14:40 UTC
    Also, looking at stty.pm I don't see that cols is a valid parameter which makes since with that error msg.