Perl is a high-level, general-purpose, interpreted, dynamic programming language.
0
votes
3answers
28 views
Sorting multi level perl hash (dynamically based on arithmetic)
How do I sort(and print) a multi-level perl hash based on key value ?
$hash{'a'}{'k1'} = 51 ;
$hash{'a'}{'k2'} = 52 ;
$hash{'a'}{'k3'} = 53 ;
$hash{'b'}{'k1'} = 61 ;
$hash{'b'}{'k2'} = 62 ;
...
-1
votes
2answers
35 views
Perl can't find module when run from cron.daily
I have perl programs that use Net::Finger and have run successfully from cron.daily in Fedora 11.
I just upgraded a server to Fedora 18 and these same perl programs no longer run from cron but run ...
0
votes
0answers
30 views
Install Error: Digest::SHA
I'm trying to install SHA using the command:
perl -MCPAN -e 'install Digest::SHA'
But i'm getting following error:
/usr/local/bin/ld: this linker was not configured to use sysroots
collect2: ...
7
votes
5answers
84 views
write music notations on web page
I want to be able to write music noation and chords in a web page.
Is there any library (like Mathjax for math) avaiable for this? If not, then is there any other way to achieve this with decent ...
0
votes
1answer
38 views
random value from lognormal distribution in perl
I'd want to randomly pick numbers from a lognormal distribution that I can define myself. I want to use perl for this. There's probably a really simple solution for this, using only a couple lines of ...
0
votes
3answers
58 views
I want to encrypt the post data so that the user can not see it
I want to create a authentication mechanism in which the client side is javacript and it fetches the password and username from the client and post it to the cgi perl script.
The problem is that the ...
-3
votes
0answers
21 views
Why do we use Webalizar.cuurent file in CGI Perl?
I am Working on CGI Perl Project on Support...There is one page named Webalizer & file format is Webalizer.current. May I know what is the basis use of this file, actually inside this page some ...
0
votes
1answer
35 views
perl Callbacks in async code
I'm trying to make a Queue Manager that get jobs when files are created in a specific folder.
I've created my code using AnyEvent so it's async.
My problem is, i'm trying to deliver a return value ...
1
vote
1answer
29 views
Prototype mismatch: sub main::strftime
In my perl program am using use POSIX qw( strftime ); library to perform unixtimestamp to date conversion as follows,
my $dt = strftime("%m/%d/%y", localtime($fields[0]));
Conversion is happening ...
1
vote
1answer
35 views
perl getting count of back references
I am developing a small utility script in Perl, primarily to learn the language. The script has a main function acting as an action dispatcher and lot of small action routines performing one specific ...
-3
votes
2answers
46 views
What is an overriden method in Perl?
This question is about the SUPER class.
When would an "overridden method" happens?
So say when I instantiate a class:
$object = Classname -> new (some => 'values');
Is that what you call an ...
1
vote
1answer
21 views
Valid variable name in Template Toolkit
I'm using perl and Template::Toolkit to generate some texts. In the perl program, I defined a hash ref such as
my $user = { "user-name" => "John" };
and passed it to Template::Toolkit in order ...
2
votes
2answers
30 views
Perl: can not post xml data to web service
I am new to web services. The web service accepts the xml data and returns values back in xml again. I am trying to post the xml data to the web services, without any success, I need to do it using ...
0
votes
3answers
55 views
Perl find closest date in array
How do I get the closest date that is earlier than the input date or equal to from an array using an input date?
For example, my array would look like this.
@dates = ...
1
vote
1answer
39 views
How to read data from Excel (.xlsb) Binary File Format?
I am using the POI 3.9 to read data from xlsx. But now I face an issue, the POI don't support the xlsb files, and I need to read data from xlsb programly. Does anybody know how to read data from xlsb ...
2
votes
3answers
41 views
Send mail in html format from perl script
I am working on unix environment and have a perl scrip to send mail, but i need to send HTML formatted mail,but it printing as it is html code. so could anyone please let me know how it manipulate or ...
0
votes
1answer
27 views
Why cant I instantiate the POSIX package in perl?
Disclaimer: I am not up to something here, I am just experimenting.
So I tried
#! usr/bin/perl
use warnings;
use strict;
use POSIX;
can I do something like:
my $point = bless {}, 'POSIX';
print ...
1
vote
1answer
41 views
How to use the passed arguments in OOP perl?
another question. I have this constructor:
sub constructor {
my $class = shift;
my $point = {
year => 2013,
month = 'june',
@_,
};
bless $point,$class;
}
So if I instantiate that:
my ...
3
votes
1answer
36 views
Passing objects to another class in Perl
What happens when i do something like this:
$stallion = Horse->new(gender => "male");
$molly = Mule->new(gender => "female");
$colt = $molly->breed($stallion);
I cant comprehend what ...
0
votes
1answer
58 views
Iterate through ip address range in perl
I have to iterate through a range of ip addresses in perl and print a list of all ip's in that range. for ex - for
192.168.122.1-192.168.122.4
My return value is
192.168.122.1, 192.168.122.2, ...
2
votes
4answers
70 views
In Perl - can a short circuit evaluation be disabled if needed?
This is a follow-up question for this one.
For example, let's say I have three procedures that I need to run no matter what and exit if all of them return 1.
while (&proc1 && &proc2 ...
4
votes
6answers
85 views
Is Perl optimized to skip remaining logic operands if the answer is already decided?
For instance, I need to match some text if $do eq 'b'.
If I run this code:
if (($do eq 'b') && (/text/))
{
do stuff
}
Would perl evaluate the first parenthesis and second parenthesis no ...
3
votes
3answers
51 views
Perl script in loop ends after one run
I am running a Perl script in a loop in a shell script:
while [ $currentDate -le $toDate ]; do
// code here...
exec /users/my_user/script_name $currentDate
// code here...
done
I ...
1
vote
2answers
44 views
How do I generate warning for an unused variable in Perl?
How do I generate warning for an unused variable in Perl ?
my $var1 = 0;
my $var2 = 10;
printf("%d",$var2);
Should generate warning that $var1 is unused
EDIT:
I tried perlcritic on my script.It ...
1
vote
1answer
21 views
Perl DBD::ODBC does not yet support binding a named parameter more than once
I'm getting following error while trying to execute a a sql which is formed by joining few variables.
DBD::ODBC does not yet support binding a named parameter more than once
I can execute the same ...
1
vote
1answer
40 views
Website Perl Script fails with json module
I want to run a perl script which uses JSON on my website. I've tested the following script in the cgi-bin folder with success:
#!/usr/local/bin/perl
print "Content-Type: text/html \n\n";
print ...
0
votes
3answers
58 views
problems with replacing first line of file using perl
I have a file that looks like this:
I,like
blah...
I want to replace only the first line with 'i,am' to get:
i,am
blah...
These are big files, so this is what I did (based on this):
open(FH, ...
2
votes
3answers
54 views
Why Perl in Windows can't rename file with umlaut?
There is following list of files in directory:
01 Born - Praised - Kissed.flac
02 Wunschkind.flac
03 You've got it.flac
04 Down in this Hole.flac
05 Wälsungenblut.flac
...
N. 0N Filename
#Yes, ...
1
vote
2answers
46 views
Reading STDOUT and STDERR of external command with no wait
I would like to execute external command rtmpdump and read it's STDOUT and STDERR separately, but not to wait till such command ends, but read its partial outputs in bulks, when available...
What is ...
-4
votes
2answers
69 views
How to split multiple datas from multiple lines in perl
Firstly, I have the data below:
*********************************************************************
TEST CASE
*********************************************************************
test results ...
3
votes
2answers
78 views
Perl using the special character &
I had a small question. I was reading some code and as my school didn't teach me anything useful about perl programming, I am here to ask you people. I see this line being used a lot in some perl ...
-1
votes
3answers
65 views
perl to convert from H:MM:SS to MM.MMMM
I need to use perl to read in from a text file DOW YYYY-MM-DD H:MM:SS.S, and then output decimal minutes MM.MMMM. Given the input text file
Fri 2013-06-14 0:59:15.3
Sat 2013-06-15 1:01:30.6
Sun ...
0
votes
1answer
36 views
How to use unix and perl to open a website, enter text in a box, press “go”, and save results?
Sorry for the broad question, but I simply don't know how better to describe this or even what the action is called. It is akin to a web scraper, but it interacts with the website too.
I'm not trying ...
5
votes
1answer
111 views
C code preprocessing in Perl
I work on the C code parser in Perl.
At the moment I need to pre-process the code.
Implementation of the pre-processing seems to be a lot of work, so I am looking for a script or library that will ...
-2
votes
1answer
51 views
Perl script to log in to server and execute command [closed]
I am new to perl. I want to run a perl script on terminal that takes in the ip address of another server , logs into it (with username and password), executes a bash command and returns the result. ...
3
votes
1answer
46 views
Replace multiple lines in HTML file which is marked by a start and end pattern.
I'm trying to make an automated build and use Perl in it to update some paths in a file.
Specifically, in an html file, I want to take the block shown below
<!-- BEGIN: -->
<script ...
1
vote
2answers
52 views
Search an element in a hash table
I have created a hash table from a text file like this:
use strict;
use warnings;
my %h;
open my $fh, '<', 'tst' or die "failed open 'tst' $!";
while ( <$fh> ) {
push @{$h{keys}}, ...
0
votes
3answers
74 views
How to reference a hash in Perl?
If i have something like this:
%hash = {foo => 'bar', foo1=>'bar1',};
or
%hash = (foo => 'bar', foo1=>'bar1',);
or
$hash = {foo => 'bar', foo1=>'bar1',};
or
$hash = (foo ...
-1
votes
3answers
31 views
how to declare array reference in hash refrence
my $memType = [];
my $portOp = [];
my $fo = "aster.out.DRAMA.READ.gz";
if($fo =~/aster.out\.(.*)\.(.*)\.gz/){
push (@{$memType},$1);
push (@{$portOp},$2);
}
print Dumper ...
0
votes
0answers
28 views
perl module for parsing subqueries in sql queries
I need to get the list of fields from the query. SQL::Statement works well for usual queries, but it doesn't work for ones like:
select a.one firstField, b.sec secField from
(select count(*) one from ...
-1
votes
0answers
71 views
Perl vs Python: where is each used? [closed]
I am totally new to Perl and Python.
Can anyone tell me the difference between these two on the basis of their concept?
Please give me situations where each of the languages are used.
-1
votes
1answer
38 views
Are objects in Perl can only be declared inside packages?
Cant I do something like
#! usr/bin/perl
use strict;
use warnings;
use Horse; #this is the package
my $test;
bless $test,Horse;
Does that code above instantiate $test as an object reference to ...
-3
votes
1answer
26 views
css not being applied in perl cgi script
I am using Xampp to test my perl cgi scripts. When I open the cgi script the css does not seem to apply to the page. I have tried the exact same code in an html file and it works fine which suggests ...
1
vote
1answer
31 views
can't merge cells after table creation with Excel::Writer::XLSX
If I try to merge two cells say C7 and C8 after a table is created in excel, the data, format gets corrupted. All the table formatting vanishes. Is it a limitation of the module?
1
vote
1answer
36 views
Is it possible to write a HTML file with inline css by using perl CGI.pm?
I am asked to make a form that get the width, unit, direction and a paragraph by using CGI.pmand forms from user. Then I need to apply width, unit and direction to the paragraph by CSS rules.
I was ...
1
vote
6answers
86 views
How do object oriented concept works in Perl
Ikegami, It's your time to shine again. But I think this post will get downvoted, nonetheless I'm desperate so I'm going to ask this one. I am reading a book on perl and so far I understand the ...
-1
votes
1answer
23 views
Please Help. Variable not being interpolated in Net :: SCP
This code telnets to a remote machine, fetches a latest directory. Then the latest folder name is stored into a variable then scp from remote to local machine happens. But the scp part is not working.
...
4
votes
5answers
82 views
What is platform independent way of converting csv files to tsv files if the csv files can be quoted with comma inside the quoted strings?
Suppose I have a csv file like this
a,b,c
1,"drivingme,mad",2
and I want convert it to a TSV
a<tab>b<tab>c
1<tab>drivingme,mad<tab>2
Whilst I can write some Python code ...
0
votes
1answer
61 views
String Replacement in Program
I have a perl script (new.pl) that needs to run an instance of a different perl script (old.pl). The issue I'm having is that I want to replace all instances of a certain string in the old.pl script ...
0
votes
1answer
37 views
Parse text file and store fields in hash table in Perl
i have a problem with my perl script which read a text file and store the first field separated by a tabulation.
Here an example:
texte input file :
@ ries bibliothèques électroniques à travers ...




