Answer Posted / jayakumar.b
Perl Installation on Linux/Unix:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
% perl Makefile.PL
% make // nmake for Windows.
% make test
% make install
% make clean
Perl Installation on Windows:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
% perl -MCPAN -e shell
% install <Module Name> Eg: install Net::FTP
Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Explain the difference between declarations of 'my' and 'local' variable scope in perl?
How does polymorphism work in perl?
Explain grooving and shortening of arrays?
What are the different instances used in cgi overhead?
Explain what is perl language?
There are some duplicate entries in an array and you want to remove them. How would you do that?
There are two types of eval statements i.e. Eval expr and eval block. Explain them.
What is the closure in PERL?
What are the functions that can be performed using cgi program?
What are the reasons that cookie server can’t handle multiple connections?
How do I print the entire contents of an array with Perl?
How to remove a directory in perl?
What are scalars in perl?
What does Perl do if you try to exploit the execve(2) race involving setuid scripts?
How to read from a pipeline with Perl