Perl is a high-level, general-purpose, interpreted, dynamic programming language.

learn more… | top users | synonyms

26
votes
16answers
16k views

What's the easiest way to install a missing Perl module?

I get this error: Can't locate Foo.pm in @INC Is there an easier way to install it than downloading, untarring, making, etc?
257
votes
8answers
54k views

Why does modern Perl avoid UTF-8 by default?

I wonder why most modern solutions built using Perl don't enable UTF-8 by default. I understand there are many legacy problems for core Perl scripts, where it may break things. But, from my point of ...
44
votes
3answers
8k views

How can I troubleshoot my Perl CGI script?

I have a Perl script that isn't working and I don't know how to start narrowing down the problem. What can I do? Note: I'm adding the question because I really want to add my very lengthy answer to ...
51
votes
1answer
3k views

The recognizing power of “modern” regexes

What class of languages do real modern regexes actually recognise? Whenever there is an unbounded length capturing group with a back-reference (e.g. (.*)_\1) a regex is now matching a non-regular ...
69
votes
3answers
9k views

Why are Perl 5's function prototypes bad?

In another question a member asserted "I would advice you not to use prototypes. They have their uses, but not for most cases and definitely not in this one." Can anyone elaborate on why this might ...
28
votes
3answers
3k views

Why is three-argument open calls with autovivified filehandles a Perl best practice?

I've got two questions about the Perl open function: 1) I seem to remember from Perl Best Practices that the 3-argument version of open is better than the two argument version, e.g. open(OUT, ...
19
votes
4answers
3k views

Why use strict and warnings?

I searched, but could not find a question that answers this. It seems to me that many of the questions in the perl tag could be solved if people would use strict; use warnings; I think some people ...
7
votes
5answers
1k views

Doubt in parsing data in perl .Where am I going wrong

I have a long htdoc of similar pattern which goes on like this: <td class="MODULE_PRODUCTS_CELL " align="center" valign="top" height="100"> <table width="100" ...
1
vote
2answers
852 views

Why can't Perl find my file that is in ClearCase?

This piece of Perl is telling me that a file in ClearCase doesn't exist when it does; $x = "PATH/TO/FILE" if (-e $x) { print "This file exists on the file system"; } else { print "I can't see ...
80
votes
3answers
45k views

How is Perl's @INC constructed? (aka What are all the ways of affecting where Perl modules are searched for?)

What are all the ways of affecting where Perl modules are searched for? or, How is Perl's @INC constructed? As we know, Perl uses @INC array containing directory names to determine where to search ...
15
votes
3answers
19k views

How can I install a CPAN module into a local directory?

I'm using a hosted Linux machine so I don't have permissions to write into the /usr/lib directory. When I try to install a CPAN module by doing the usual: perl Makefile.PL make test make install ...
15
votes
11answers
5k views

What is the most straightforward way to pad empty dates in sql results (on either mysql or perl end)?

I'm building a quick csv from a mysql table with a query like: select DATE(date),count(date) from table group by DATE(date) order by date asc; and just dumping them to a file in perl over a: ...
12
votes
8answers
8k views

How can I use a new Perl module without install permissions?

Here is my situation: I know almost nothing about Perl but it is the only language available on a porting machine. I only have permissions to write in my local work area and not the Perl install ...
49
votes
10answers
29k views

How can I download all emails with attachments from Gmail?

How do I connect to Gmail and determine which messages have attachments? I then want to download each attachment, printing out the Subject: and From: for each message as I process it.
109
votes
9answers
4k views

Seeking clarification on apparent contradictions regarding weakly typed languages

I think I understand strong typing, but every time I look for examples for what is weak typing I end up finding examples of programming languages that simply coerce/convert types automatically. For ...
21
votes
3answers
5k views

How can I use CPAN as a non-root user?

I want to install perl modules on a shared server on which I do not have root access. How can I do this? They also seem to have an older version of CPAN (it complains about that when running the ...
15
votes
4answers
12k views

How can I extract images from a PDF file?

I need to extract all the images from a PDF file on my server. I don't want the PDF pages, only the images at their original size and resolution. How could I do this with Perl, PHP or any other UNIX ...
1
vote
4answers
928 views

Using perl's `system`

I would like to run some command (e.g. command) using perl's system(). Suppose command is run from the shell like this: command --arg1=arg1 --arg2=arg2 -arg3 -arg4 How do I use system() to run ...
23
votes
3answers
25k views

How can I run a Perl script as a system daemon in linux?

What's a simple way to get a Perl script to run as a daemon in linux? Currently, this is on CentOS. I'd want it to start up with the system and shutdown with the system, so some /etc/rc.d/init.d ...
57
votes
9answers
5k views

How to reliably guess the encoding between MacRoman, CP1252, Latin1, UTF-8, and ASCII

At work it seems like no week ever passes without some encoding-related conniption, calamity, or catastrophe. The problem usually derives from programmers who think they can reliably process a “text” ...
66
votes
20answers
14k views

while (1) Vs. for (;;) Is there a speed difference?

Long version... A co-worker asserted today after seeing my use of while (1) in a Perl script that for (;;) is faster. I argued that they should be the same hoping that the interpreter would optimize ...
25
votes
9answers
5k views

How do YOU manage Perl modules when using a package manager?

A recent question here on SO got me thinking. On most Linux distributions that I tried, some Perl modules would be available through the package manager. Others, of course, not. For quite a while I ...
24
votes
9answers
1k views

What pseudo-operators exist in Perl 5?

I am currently documenting all of Perl 5's operators (see the perlopref GitHub project) and I have decided to include Perl 5's pseudo-operators as well. To me, a pseudo-operator in Perl is anything ...
1
vote
1answer
404 views

How to extrace pg_backend_pid from postgresql in shell script and pass it to another process?

I need to run bin/psql on the command line (or script) and print its pg_backend_pid out, so that the pg_backgroud_pid can be passed to another process (run by root) as command line arguement. The ...
57
votes
4answers
59k views

What's the difference between Perl's backticks, system, and exec?

Can someone please help me? In Perl, what is the difference between: exec "command"; and system("command"); and print `command`; Are there other ways to run shell commands too?
30
votes
10answers
39k views

How to efficiently calculate a running standard deviation?

I have an array of lists of numbers, e.g.: [0] (0.01, 0.01, 0.02, 0.04, 0.03) [1] (0.00, 0.02, 0.02, 0.03, 0.02) [2] (0.01, 0.02, 0.02, 0.03, 0.02) ... [n] (0.01, 0.00, 0.01, 0.05, 0.03) What ...
35
votes
6answers
33k views

How do you capture stderr, stdout, and the exit code all at once, in Perl?

Is it possible to run an external process from Perl, capture its stderr, stdout AND the process exit code? I seem to be able to do combinations of these, e.g. use backticks to get stdout, IPC::Open3 ...
19
votes
7answers
17k views

How do I include functions from another file in my Perl script?

This seems like a really simple question but somehow my Google-Fu failed me. What's the syntax for including functions from other files in Perl? I'm looking for something like C's #include "blah.h" ...
11
votes
9answers
9k views

How can I compile my Perl script so it can be executed on systems without perl installed?

I have a .pl file and I want to execute that file in any system even though perl is not installed. How can i achieve it? Can any one let me know with some good examples to do that?
21
votes
4answers
815 views

What is the difference between new Some::Class and Some::Class->new() in Perl?

Many years ago I remember a fellow programmer counselling this: new Some::Class; # bad! (but why?) Some::Class->new(); # good! Sadly now I cannot remember the/his reason why. :( Both forms ...
20
votes
8answers
16k views

In Perl, is there a built in way to compare two arrays for equality?

I have two arrays of strings that I would like to compare for equality: my @array1 = ("part1", "part2", "part3", "part4"); my @array2 = ("part1", "PART2", "part3", "part4"); Is there a built-in way ...
19
votes
6answers
11k views

How can I check if I have a Perl module before using it?

I have the following Perl code which relies on Term::ReadKey to get the terminal width; My NetBSD build is missing this module, so I want to default the width of the terminal to 80 when the module is ...
6
votes
4answers
1k views

How can I fire and forget a process in Perl?

Can somebody please tell me how to fire-and-forget a process in Perl? I've already looked at ruby: how to fire and forget a subprocess? for doing the same in Ruby.
18
votes
5answers
11k views

Perl memory usage profiling and leak detection?

I wrote a persistent network service in Perl that runs on Linux. Unfortunately, as it runs, its Resident Stack Size (RSS) just grows, and grows, and grows, slowly but surely. This is despite ...
13
votes
10answers
12k views

How can I extract URL and link text from HTML in Perl?

I previously asked how to do this in Groovy. However, now I'm rewriting my app in Perl because of all the CPAN libraries. If the page contained these links: <a ...
17
votes
7answers
2k views

What's broken about exceptions in Perl?

A discussion in another thread got me wondering: what do other programming languages' exception systems have that Perl's lacks? Perl's built-in exceptions are a bit ad-hoc in that they were, like the ...
11
votes
13answers
24k views

Regex to match all HTML tags except <p> and </p>

I need to match and remove all tags using a regular expression in Perl. I have the following: <\\??(?!p).+?> But this still matches with the closing </p> tag. Any hint on how to match ...
33
votes
8answers
76k views

How can I pass command-line arguments to a Perl program?

I'm working on a Perl script. How can I pass command line parameters to it? Example: script.pl "string1" "string2"
15
votes
4answers
2k views

How can I handle Javascript in a Perl web crawler?

I would like to crawl a website, the problem is, that its full of JavaScript things, such as buttons and such that when they are pressed, they do not change the URL, but the data on the page is ...
3
votes
4answers
12k views

How should I call a Perl Script in Java?

I read Runtime.getRuntime().exec("perl script.pl") is an option, but is this the best way to do it? I'll need an answer from that script, so I'll have to read the script's return in some cases, ...
5
votes
3answers
2k views

Why do my Perl tests fail with `use encoding 'utf8'`?

I'm puzzled with this test script: #!perl use strict; use warnings; use encoding 'utf8'; use Test::More 'no_plan'; ok('áá' =~ m/á/, 'ok direct match'); my $re = qr{á}; ok('áá' =~ m/$re/, 'ok ...
5
votes
6answers
5k views

How can I install CPAN modules locally without root access (DynaLoader.pm line 229 error)?

Doesn't work with other modules, but to give an example. I installed Text::CSV_XS with a CPAN setting: 'makepl_arg' => q[PREFIX=~/lib], When I try running a test.pl script: $ perl test.pl ...
4
votes
3answers
3k views

Calling Perl script from PHP and passing in variables, while also using variablized perl script name

I normally call perl scripts from PHP as below and pass in variables this way, and it works fine, however now I am building a component for re-use where I want to also variablize the perl script name ...
90
votes
5answers
26k views

What are the differences between Perl, Python, AWK and sed? [closed]

just want to know what are the main differences among them? and the power of each language (where it's better to use it). Edit: it's not "vs." like topic, just information.
18
votes
4answers
9k views

How can I find memory leaks in long-running Perl program?

Perl uses reference counting for GC, and it's quite easy to make a circular reference by accident. I see that my program seems to be using more and more memory, and it will probably overflow after a ...
20
votes
15answers
6k views

What is the best way to slurp a file into a string in Perl?

Yes, There's More Than One Way To Do It but there must be a canonical or most efficient or most concise way. I'll add answers I know of and see what percolates to the top. To be clear, the question ...
15
votes
7answers
22k views

How to use a variable in the replacement side of the Perl substitution operator?

I would like to do the following: $find="start (.*) end"; $replace="foo \1 bar"; $var = "start middle end"; $var =~ s/$find/$replace/; I would expect $var to contain "foo middle bar", but it does ...
15
votes
3answers
4k views

What's the best way to make a deep copy of a data structure in Perl?

Given a data structure (e.g. a hash of hashes), what's the clean/recommended way to make a deep copy for immediate use? Assume reasonable cases, where the data's not particularly large, no complicated ...
10
votes
1answer
721 views

Do you use an exception class in your Perl programs? Why or why not?

I've got a bunch of questions about how people use exceptions in Perl. I've included some background notes on exceptions, skip this if you want, but please take a moment to read the questions and ...
5
votes
2answers
2k views

How can I use Perl libraries from PHP?

I want to use Perl libraries from a PHP application. I have heard that it is possible. I have considered the possibility of re-writing the libraries in PHP, but I do not think that is a good idea ...

1 2 3 4 5 58