1847314 Members
2368 Online
110264 Solutions
New Discussion

expect.pm

 
SOLVED
Go to solution
navin
Super Advisor

expect.pm

Hello All,
I have already posted a message for expect. Thanks for your responses. Actually it seems i need expect.pm ..is this something that i need to download compile.Or is it available anywhere as binary.please advice
Learning ...
6 REPLIES 6
Tim Nelson
Honored Contributor
Solution

Re: expect.pm

sounds like a perl module.

Did you check cpan.org ???

James R. Ferguson
Acclaimed Contributor

Re: expect.pm

Hi Navin:

".pm" = Perl Module.

http://search.cpan.org/~rgiersig/Expect-1.21/Expect.pod

http://search.cpan.org/~rgiersig/Expect-1.21/

If you have a Perl script that requires this, you can install in by running:

# perl -MCPAN -e shell

...follow the prompts for setup and install what you need.

Regards!

...JRF...
navin
Super Advisor

Re: expect.pm

Thanks much..it took me to the cpan prompt....instead of installation...?..
Learning ...
James R. Ferguson
Acclaimed Contributor

Re: expect.pm

Hi (again):

> it took me to the cpan prompt....instead of installation...?

I suspect you have never configured your environment for CPAN so I pointed you there to begin the process and do the install.

Regards!

...JRF...
navin
Super Advisor

Re: expect.pm

Thank you.is there a way with out cpan..perl module can be installed.
thanks
Learning ...
James R. Ferguson
Acclaimed Contributor

Re: expect.pm

Hi Navin:

> Thank you.is there a way with out cpan..perl module can be installed.

Well, PPM for ActiveState distibutions or manually:

perl Makefile.PL
make
make test
make install

Regards!

...JRF...