Tagged Questions
-1
votes
2answers
48 views
Perl - Global variables available in all included scripts and modules?
So lets say I have a main.pl script and in that script I need to declare some variables (any kind of variable constant or normal) and those variables need to be available through all scripts and ...
1
vote
2answers
86 views
Is it unpolite to put an END block in a module?
Would it be OK to keep the END block in this example, because nobody wants a broken terminal or shouldn't I put an END block in a module?
package My_Package;
use warnings;
use strict;
use ...
0
votes
1answer
38 views
Perl - Dynamically instantiate multiple UDP Server modules and continue executing the main script?
I'm trying to build a UDP Server module in Perl using sockets that listens to a specific host and port, since I know that the UDP Server will run continuously in the while loop waiting for data I want ...
1
vote
2answers
70 views
In a perl module, is a semicolon required after a sub function?
I am writing code for work and have run into an interesting issue. I have searched my go-to resources on the topic and have not found a clear answer.
When writing a sub function in a Perl module, is ...
2
votes
1answer
21 views
Perl exporting module function from higher directory
I have file .../module.pm and file .../somedir/program.pl
How to export function from module.pm to program.pl? Or how to get path to current script?
0
votes
2answers
44 views
Perl module not found when script executed by php
I execute a perl script with exec via php, however I receive an error that the module Net::DNS is missing. I have installed the module as a regular user and as such is located in ...
2
votes
1answer
54 views
Perl: how to generate a list of 'use'd modules in a script? [duplicate]
I have a few Perl scripts which use quite an extensive amount of CPAN modules. Furthermore, these scripts use some custom perl modules which in turn have even more CPAN dependencies.
Some of the ...
0
votes
1answer
79 views
How to Display IFconfig information with perl program in Linux
I have an assignment where i am supposed to create a perl script in linux that will give an output similar to that of the linux command "ifconfig". I have started writing the script but I repeatedly ...
0
votes
1answer
79 views
install CPAN module
I have a problem when i want to install perl module
I make " cpan" to install cpan , but i get this "
Terminal does not support AddHistory.
Your configuration suggests that CPAN.pm should use ...
5
votes
1answer
132 views
Should I use “use 5.12.0; use warnings;” in a perl module?
I am not sure if and what difference it makes if a start a perl module with
package MYPACKAGE;
use 5.12.0;
use warnings;
# functions are here
1;
or
use 5.12.0;
use warnings;
package MYPACKAGE;
...
0
votes
1answer
55 views
How to count the length of output in perl
I need to be able to count the output of the program i have below, the output basically supposed to look like
website-name.com - Breaking news, opinion, politics, entertainment, sports and culture.
...
0
votes
1answer
63 views
How to load SQLite3 database with log file entries using perl
I have an assignment In my Perl class that contains two programs, the first is to create a database and table using the DBI::SQLite for Perl, i have already completed the first part of the program, ...
2
votes
2answers
68 views
Prototype mismatch error (perl)
I am getting this strange error when importing a module I wrote into my Dancer app.
Prototype mismatch: sub main::from_json: none vs ($@) at mymodule.pm line 6.
Prototype mismatch: sub main::to_json: ...
-1
votes
3answers
161 views
how do i read data from Ms Word document using perl module in linux support
i am elavarasan i want some help about below query
how do i read data from Ms Word document using perl module in linux support
2
votes
2answers
67 views
perl: setting default, local, and global user settings
I'm working on a perl script (myscript.pl) and I would like to load some environment variables from various modules in this order:
default settings in defaultSettings.pm in the same directory as ...
0
votes
2answers
111 views
Use current working directory version of perl module
I am trying to run a perl script and to make it use a module file in the current working directory. I do this because I eventually will need to use the script and module on another machine where I ...
3
votes
2answers
78 views
How do we know when a Perl core module is deprecated?
Given a particular module that used to be supported as part of Perl core, how do I tell if it's supported by the Perl version I want to upgrade to?
-2
votes
4answers
86 views
Prevent multiple inclusions in perl
Suppose I have two files: a module file that looks like this:
package myPackage;
use Bio::Seq;
and another file that looks like this:
use lib "path/to/lib";
use myPackage;
use Bio::Seq;
How can ...
0
votes
2answers
147 views
Installing modules with Strawberry Perl 5.16.2.2 (64bit)
I used to use activestate perl, but moved to strawberry perl just now because I want to install those less common used packages. However I'm having problems installing modules with Strawberry Perl ...
0
votes
1answer
48 views
Fastest way to execute applying a function to a large data set
I am wondering what is the fastest way (in terms of execution time) to apply a functional transformation to every value in in a data set (or a column vector). The following code complies, and I am ...
2
votes
2answers
82 views
Fastest way of calling a subroutine
As far as I know, in Perl, we can call a subroutine from a Module by using these techniques:
Export subroutine foo, import the module which has this subroutine. Finally call it in your perl script.
...
0
votes
1answer
91 views
Unable to install a CPAN module
I am trying to install a CPAN module Statistics::ChiSquare. I am running Strawbwerry perl and Padre on my Windows 7 machine. First I installed cpan.pm. An then tried to install the module, but got the ...
2
votes
1answer
92 views
How to import symbols from a Exporter Perl module using require?
I like to import symbols from an Exporter powered Perl module using require and not use. Perl don't know the variable he just imported.
Perl module sample:
package TheModule;
use strictures;
use ...
6
votes
3answers
186 views
How can I tell if used modules are pure perl?
If I have Perl code which usees a lot of modules, is there a fast and easy way to find out if some of this modules are not pure Perl modules?
3
votes
3answers
116 views
Calling a Module Function By Reference
I am looking at building a dispatch table for calling a number of Perl modules that I wrote.
As an example, if I have a package called Hello.pm with a simple function hello() in it, I would like to ...
1
vote
3answers
71 views
Extending perl module from within the calling script
Is it possible to extend a perl module from withing the calling script?
Something like that:
#!/usr/bin/perl
use strict;
use Some::Module;
Some::Module::func = sub {
my $self = shift;
# ...
3
votes
2answers
154 views
Installing Perl modules and dependencies with non-root and without CPAN
I have been writing Perl scripts for my work and the machine that I have been given to work on makes installing Perl modules difficult:
We cannot have gcc on my machine for security reasons, so I ...
0
votes
1answer
45 views
“dzil new” stopped working
I'm using perlbrew. Tested under Perl v5.16.2 and v5.14.2, on Mac OS X, Debian and Ubuntu boxes. The result is always the same:
stas@Stanislaws-MacBook-Pro:~$ dzil new Some::Module
[DZ] making target ...
1
vote
1answer
54 views
Getting author tests to be created and run for dzil test
I am trying to use several Dist::Zilla plugins to generate and run author tests. The only problem is that they are generated by dzil build and not run with dzil test. As an example, here are some ...
0
votes
1answer
25 views
Why does load-test fail with BSD and Perlversion 5.12.0 - 5.12.2?
What could be the reason that this test (t/00-load.t) fails with OS *BSD and Perl version from 5.12.0 to 5.12.2?
#!perl -T
use 5.010001;
use strict;
use warnings;
use Test::More tests => 1;
...
8
votes
4answers
196 views
Why do '::' and '->' work (sort of) interchangeably when calling methods from Perl modules?
I keep getting :: confused with -> when calling subroutines from modules. I know that :: is more related to paths and where the module/subroutine is and -> is used for objects, but I don't ...
2
votes
0answers
144 views
Test failure in dmake test with module PerlMagick(Image::Magick)
I was first having problem passing past Makefile.pl installing the perlMagick module(otherwise known as Image::Magick).
It said I didn't had the required binaries installed, but a person here in SO ...
1
vote
0answers
74 views
Ld.exe has stopped working on install with Perl Strawberry
Trying to install a module(Devel::Declare) on a Strawberry setup I got an error window telling me "ld.exe has stopped working".
Here's the command I ran on the CMD:
cpan Devel::Declare
You can ...
1
vote
1answer
56 views
is there any Perl Module to replace the old mirror module?
Recently I need to touch a very old system running over the past 15 years with some Perl programs. Sadly I have very few experience using Perl as a program language.
In the program the module mirror ...
9
votes
2answers
282 views
Find unused “use'd” Perl modules
I am working on a very large, very old "historically grown" codebase. In the past, there were often people thinking "Oh, I may need this and that module, so I just include it...", and later, people ...
1
vote
2answers
58 views
How to access object features in Perl from within the same package
I'm making a Perl module and I am still getting to grips with how Perl deals with objects.
This is the new sub that I wrote to create an object and I have no problem updating elements:
sub new {
...
3
votes
3answers
230 views
Running perl scripts like php without CGI
Is it possible to run Perl script in web server without using CGI?
I mean, like php scripts (run any .pl file without #!/path/to/interpreter line).
If Yes, How?
Thanks
1
vote
1answer
91 views
Can I call a .pl file from a module in perl?
I have created a Perl module from a .pl file and I am testing it at the moment. It works until the point where it needs to use another .pl file (to pull out some sql statements). I am calling the file ...
4
votes
1answer
85 views
perl: “unincluding” modules
so, i have a program like this:
#!/usr/bin/perl -w
use strict;
foreach (@data) {
if($_ eq "foo") {
use Foo;
process();
}
if($_ eq "bar") {
use Bar;
...
9
votes
3answers
208 views
Testing Perl module with Test::More (Intermediate Perl, chapter 14)
This is my first question to Stack Overflow. Apologies in advance if I am breaking some rules.
I have been reading Chapter 14 of Intermediate Perl, 2nd ed., which discusses testing Perl modules and ...
1
vote
2answers
100 views
How do I conditionally change @INC based on module version?
Background: I have a perl module -- let's call it Foo::Common which has been installed on one of our file servers (for the sake of simplicity, I will call thie the 'global' version). The module is ...
1
vote
2answers
68 views
How can I tell the lowest required version number of a Perl module?
I'm writing a Perl module and right now I'm including in Makefile.PL all of the dependencies. The only problem is I have all of the latest versions of the modules required, but I don't want to limit ...
0
votes
1answer
164 views
Perl compiler for Windows
I'm trying to compile a Perl script on Windows 7 x64 SP1 so that it can run on a computer that does not have Perl installed. I tried tinyperl, Perl2Exe, perl dev kit but I can't compile the file. I ...
5
votes
2answers
231 views
Is there ever a reason to include the shebang line in Perl packages?
I realize that I should include the shebang line only in scripts we want to run directly in the shell. I also do not see the shebang line included in any of the big module packages I have installed ...
2
votes
2answers
59 views
Bundling perl prereq module in source form for deployment?
My webapp depends on quite a few modules. When I deploy on a remote server, I have to cpanm to re-install all the modules, which has the following issues:
Slow.
Cannot include private module / ...
0
votes
2answers
369 views
'Can't locate file.pl in @INC…' error in Perl
I have a folder with several .pl files that run through main.pl. I have successfully had these working by using require 'file.pl'; at the beginning of the main file. I have used some modules, too, ...
0
votes
1answer
61 views
Transferring perl modules (RHEL)
I have need to install a couple perl modules onto my test environment (JSON and JSON::XS).
However, the test environment, which mirrors production, can't have gcc installed.
I do have a dev ...
1
vote
2answers
90 views
Getting hash from module in to the main Perl code
This is the first time, I am working with module. I am trying to retrieve the content of a hash present in the module into main perl code.
Below is the module DRUG.pm
package DRUG;
require Exporter;
...
0
votes
2answers
142 views
Perl validate module before use
I am using Module::Pluggable to load modules from a given directory:
for my $module ( plugins() ) {
eval "use $module";
if ($@) {
my $error = (split(/\n/, $@))[0];
push ...
1
vote
1answer
103 views
perl automatic module loading like in php
I am creating a bigger application in Perl, and I am wondering whether something like class autoloading similar to php’s can be done in Perl?
I checked catching exceptions and $SIG{__DIE__} ...
