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

learn more… | top users | synonyms

0
votes
0answers
19 views

Encode \x{57fc}\x{7389}\x{770c} as Japanese Text

I have the following response from my back-end servers (Java): \x{57fc}\x{7389}\x{770c} When I try to encode in PERL it I get this: JSON::XS->new->utf8->encode($text); output: 埼玉県 ...
0
votes
3answers
25 views

Perl: sort a hash by value, then by key

similar to this question: sort by subset of perl string I would like to sort first by value, then by subset of the key. my %hash cat_02 => 0 cat_04 => 1 cat_03 => 0 cat_01 => 3 ...
1
vote
1answer
25 views

GetPixel after SetPixel gives incorrect result

I set pixel from one jpg. Save it another jpg file. Read a new file again. Get pixel. But it gives me incorrect result. That's my code: use Image::Magick; use Data::Dumper; my $im = new ...
1
vote
1answer
20 views

Perl throwing bad headers when there's a warning IIS

Okay, this is a weird one. All of our servers are using ActivePerl 5.8.8 and windows server 2003. During some development, we ran into an issue where the script we were working on started throwing ...
0
votes
1answer
28 views

HTML::TreeBuilder::XPath rejects <link> inside body tag

I'm using HTML::TreeBuilder::XPath to parse a complex HTML doc and then edit it, before writing it back to disk. The problem I'm running into is that it rejects <link...> tags inside the ...
0
votes
1answer
14 views

First value empty for options with multiple values in Perl Getopt::Long

could someone help me understanding why the bellow is happening. I am using Perl Getopt::Long to parse options with multiple values, but I am geting some strange results. The following code: ...
0
votes
0answers
14 views

SELinux preventing /usr/bin/at from using the setgid capability

I have a web application written in perl and running Apache and Fedora 18. When an event is created I want to schedule a linux at command to run when the event ends. The at command will run a script ...
0
votes
1answer
31 views

User id in perl cron job

I have a perl script which is running as cron job (every minute). Now, I do certain computation and execution in my file. Whenever the job is running, it does not get access to some folders in the ...
-1
votes
0answers
34 views

merge a column in excel using perl

i have the following code which converting csv file to xls file what i want to do know is to format the xls file for example i have some words which repeted in the same column and i want that each ...
-1
votes
2answers
61 views

Simple Perl program to print the time to nano resolution to screen

If I run Date +%H:%M:%S.%N from a linux bash command-line it prints out the time to nanosecond resolution. I am trying to continuously print that to the screen but this perl program doesn't seem to ...
0
votes
2answers
37 views

How do you change the encoding of a file, using Perl?

I'm writing a perl script that creates an xml file "settings.xml". (Using XML::Writer). I'd like the file to be encoded in UCS-2 big endian, but I'm unsure of how. I've tried things like: open(my ...
0
votes
2answers
40 views

perl check if directory exists in ~/

Strange behavior that I noticed about the "-d" flag to check if a file is a directory and if the dir exists, that it behave different when using "~/my_dir" as my path. The following code will return ...
-1
votes
0answers
33 views

Creating XML files in linux [closed]

I want to create XML file in linux. Frankly, I am writing perl script where some parameters are common. So, I will be creating XML file for these parameters & will include that XML file in my perl ...
0
votes
0answers
39 views

how to escape asterisk/glob when sending command to linux host

i've written a script which takes the contents of a hostfile and a cmdlist, logs into each host in turn and executes each command in cmdfile then returns the output. a typical session might look like ...
0
votes
3answers
39 views

Alphabetizing a list of hash keys in perl?

I want to make an array that stores an alphabetized list of hash keys. I tried this method: @sorted = sort { $hash{$a} cmp $hash{$b} } keys %hash; ...But it turns out this returns a list of hash ...
1
vote
2answers
39 views

Perl search and replace enters endless loop

I am trying to match and replace in multiple files some string using local $/; open(FILE, "<error.c"); $document=<FILE>; close(FILE); $found=0; while($document=~s/([a-z_]+)\.h/$1_new\.h/gs){ ...
0
votes
1answer
33 views

Perl script — Multiple text file parsing and writing

Suppose i have this directory full of text files (raw text). What i need is a Perl script that will parse the directory (up2bottom) text files one by one and save their contents in a new single file, ...
2
votes
4answers
56 views

Interpolate perl variable in shell command

I want to take date as input from User & pass that input to shell command below. for e.g. $date = ARGV[0]; `cd xyz $date` will this variable interpolated in perl?
0
votes
2answers
17 views

Perl script launched with .vbs - problems with “Program Files” in path env variable

I'm launching a perl build script with a .vbs file, however when the perl window is executed it gives me "Can't find cl.exe, no such file or directory" Running the perl script directly gives no ...
1
vote
1answer
13 views

Perl REST::Client best way to get and use CSRFToken and session id through cookies

So right now I'm using REST::Client which does a perfectly good job when it comes to making GET requests and fetching JSON data. However, the API in question, when issuing a POST request, should pass ...
-3
votes
3answers
66 views

New idioma and How to detect recursion level [closed]

This is not exactly a question. I think I invent new idioma - elegant way to say: Do something , if fail, try to fix it and do it again. If failed three times, give up. Is it looks good? use strict; ...
0
votes
3answers
49 views

Parse large text file with Perl crashes when run from PHP

I'm using Perl script to parse and create JSON output for use in PHP. Basically I'm parsing large text files(5-20MB) using Perl, with data as following: ...
0
votes
2answers
33 views

Space pattern on webpage with perl CGI script

As i am working on cgi perl i am trying align two sequences and print their out put on web page but their may be some prob with this part because i am not getting my desired format of output on web ...
1
vote
3answers
39 views

Get disk space and separate this with most used space but put in one list

Want to get disk space and separate this with most used space but put in one list Example how get the used space: df -P | grep -vE 'Filesystem' | awk '{ print $5 " " $6 }' Output: 89% / 1% ...
1
vote
2answers
48 views

Perl Error : Not an ARRAY reference

I am trying to execute the following code, but it gives the error code : use XML::Simple; use Data::Dumper; $xml = new XML::Simple (KeyAttr=>[]);# read XML file $error ...
-1
votes
0answers
23 views

embedded perl support failed to initialize [closed]

I had executed yum install net-snmp net-snmp-libs net-snmp-utils net-snmp-perl as a root user to install net-snmp with perl on my Fedora-14 OS. Its got ...
0
votes
1answer
61 views

List comparision in perl

The command "sh value" gives A: optimal size: 100 feature : ON Minimum size: 0 CPU load: 100% Done The name-value pairs written above are parameters wit default values. I want to compare the ...
0
votes
1answer
64 views

Perl refuses to run scripts

I'm using Perl 5.14.2 on Cygwin, and suddenly it refuses to run the simplest of scripts: #!/usr/bin/perl use strict; use warnings; print "hello world!\n"; Trying to execute this causes Perl to do ...
1
vote
2answers
40 views

How can I elegantly print numeric strings as integers if they are whole?

The idea here is to have numbers like "12.0" printed as "12", but not change partial numbers like "14.6". For sure there are many ways to approach it, but the following just don't seem DWIM/elegant ...
0
votes
2answers
48 views

calculating cumulative distribution function with perl

I got this code from one of my friends but because i did not work with perl, I don't know how it works. can you help me to understand it. This file must get a file with some data that they shows ...
3
votes
2answers
41 views

perl Getopt::Long::GetOptions usage

I am new to perl and wanted to use Getopt::Long::GetOptions for getting command line options to the script. I have requirement like this :- 1.) perl script.pl -c <name1> -c <name2> -m ...
0
votes
2answers
35 views

Perl gives: “Use of uninitialized value $k in addition (+) at ./one.pl line 98”

Perl gives me this: Use of uninitialized value $k in addition (+) at ./one.pl line 98, <FILE2> line 2000. The code-snipped is the following: sub calcMu { my $sum = 0; my $lengStrs = ...
5
votes
3answers
68 views

What changes, if any, are required to make the following Perl eval bullet proof?

eval { # here is put some code that may throw exception 1; # Why is the "1;" here ? } or do { my $error = $@; # Handle error. }; Does the following style protect against $@ not being ...
3
votes
4answers
66 views

Need to match a pattern occurence only once in a file

I have multiple files with some pattern ABCD 100 ABCD 200 EFGH 500 IJKL 50 EFGH 700 ABCD 800 IJKL 100 I want match the occurence of each (ABCD/EFGH/IJKL) only once sorted based ...
1
vote
5answers
46 views

Perl: Need to match a pattern

I have a variable containing a string. $name="mak -o create.pl -n create.txt"; Now I want to match a pattern in which I can get the value as create.pl which will always be followed by -o. That is , ...
-4
votes
0answers
24 views

Parse Microsoft Lync conversation files? [closed]

Ok, I have what I believe is a relatively simple set of questions, and I just need to be pointed in the right direction. I am using microsoft Lync at work for instant message conversations with my ...
0
votes
2answers
114 views

CGI script doesn't run in browser

I am making a .cgi file which prints all values from database table on webpage in a table format.The problem is that when I run the file on putty terminal emulator it works fine but when I try to run ...
-1
votes
3answers
51 views

What to use for Web backend development? Perl? PHP? [closed]

I'm looking to setup a pretty advanced web-based interface for a B2B application. I'm looking for a backend language to generate templates for the front end, pass the JSON data back and forth, etc. I ...
2
votes
1answer
40 views

Get return code from perl script and hide from process table

I have a script that calls a jar... exec("$java_path/java -jar testjar.jar --username user --password pswd"); or system("$java_path/java -jar testjar.jar --username user -password pswd"); I need ...
0
votes
2answers
60 views

How would I search through a directory and all subdirectories recursively using perl

I saw this link using glob It's not quite what I want to do though. Here is my plan. In order to search though a directory for any files that partially match a string, given to my function as a ...
0
votes
0answers
29 views

“Read from the server failed” after selecting some records

I have a simple Perl script that connects to a MS SQL Server 10.50 via freetds. It runs a single query, something like "SELECT name FROM table". The table has about 15000 records. I do ...
0
votes
2answers
47 views

Can't locate local/lib.pm in @INC at /usr/share/perl/5.14/CPAN/FirstTime.pm

I am trying to use Perl the first time on my system which is Ubuntu 12.04. I have Perl v.5.14.2 installed. I looked up how to install Perl modules, so I started as follows: $ perl -MCPAN -e shell ...
1
vote
2answers
32 views

ReCaptcha Implementation in Perl

To implement recaptcha in my website. One option is google API . But for that i need to signup with domain name to get API key. Is there any other way we can do it ?
1
vote
2answers
43 views

Perl mechanize print HTML form names

I'm trying to automate hotmail login. How can I find what the appropriate fields are? When I print the forms I just get a bunch of hex information. what's the correct method and how is it used? use ...
3
votes
3answers
78 views

How do I escape single quotes with perl interpreter?

How do I escape the single qoutes in my bash expression find . | xargs perl -pi -e 's/'conflicts' => '',//g'? I want to replace the string 'conflicts' => '', in my files?
2
votes
4answers
67 views

Keeping first character in string, in a specific single field

I am trying to remove all but the first character of a specific field in a .tab file. I want to keep only first character in fields 10 and 11. Normally the fields have 35 characters in them, so I ...
0
votes
2answers
54 views

Perl script to convert a collection of text into vector representation

The input file is in UTF8 encoding, each line has the following structure: C\tTEXT\n where C is a class of documents (several characters), \t is a tab, the TEXT is a sequence of characters, \n ...
0
votes
2answers
46 views

Replacing many words in brackets with a new one

I have the following string : Cat dog (fox) catepillar bear foxy I need to replace "cat" and "fox" words from this sentence to word "animal" use warnings; use strict; # declare your vars with 'my' ...
0
votes
2answers
46 views

Perl - how to convert a string that contains a space-separated words into a hash

can someone help me how to convert a string that contains a space-separated words into a hash where the hash key is the word from the string and the hash value is the number of occurrences of the word ...
0
votes
2answers
32 views

Perl sendmail to list is truncated

I am working with a perl based cgi pages for a webproject. I am encountering a strange problem with sendmail module which happens randomly. Problem: Sendmail would truncate the emails of the users ...

1 2 3 4 5 548