I have installed PAR from CPAN. Now, how do you use it? It gives usage example as:
% pp -o hello hello.pl
How do you use this on Windows? pp gives “command not found”.
I am new to perl. Only thing I need is to run a module.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should look in your lib directory to ensure that the pp.pm file exists somewhere. then, you can load it up by typing
use Par::pp;at the perl command line (i’m guessing that it is part of PAR based on what i’ve found, it could be something as simple asuse pp;at the command line).once the module is loaded, it should provide the pp command for you to use.
thanks,
mark