| Thread | Last Post | Replies |
|
| regexp pattern matching | 30 Jun 2006 23:31 GMT | 5 |
Hello, I have a pattern matching question, that I can't seem to find the answer to either online or in books, so here is the pattern I am trying to match, and hopefully some kind soul will give me pointers: The satchel contains the following items (97): item1, item2, etc etc
|
| Perl Binary to Perl Code | 30 Jun 2006 21:05 GMT | 3 |
I have a dozen perl and perl-cgi program that converted in to binary files. Is there any code / prggram available to get the source code out of it ? This is my out put when am giving file command $ file alignscr.p
|
| perlcc executable to perl code ? | 30 Jun 2006 21:02 GMT | 2 |
One quick question: Is ther any way to get the source code out of a perlcc executable ? thanks a bunch to all, ibiokid !!!
|
| renaming files | 30 Jun 2006 19:44 GMT | 4 |
hi to all, does exists a way to rename automatically files? I mean: I've got directories with this content: EN0.tmp
|
| A string & a list | 30 Jun 2006 19:41 GMT | 5 |
A problem in Perl You have a string & a list For ex.: $s = "ADbDCdBabc"; @N=("A","D","C") You should exclude those elements from the string : first by 1 element,
|
| RE: Crypt::GPG won't decrypt file...rewrote it to use system, but only partially works | 30 Jun 2006 17:15 GMT | 2 |
I re-wrote the decryption routine to use system instead of Crypt::GPG, and came across another puzzle: my @gpg_command = ("/usr/bin/gpg --decrypt $encrypted > $decrypted 2> /dev/null");
|
| Removing print statements from cgi script | 30 Jun 2006 14:54 GMT | 1 |
Does anyone know if its possible to remove data printed from a web-page created from cgi.pm depnding on the effect of a sub-routine. ie: I print the header and a selection form which then runs a sub - is it
|
| Script Required to Check a range of IP's | 29 Jun 2006 22:02 GMT | 13 |
I have a requirement of writing down a script to check the range of IP's in a text file and display them which all are active and not active. I have written down the below and needs your help because it is not giving me the correct ouptut.
|
| Installation query | 29 Jun 2006 16:11 GMT | 1 |
Sir, I am a student of Biotechnology . I want to learn for programming in bio-informatics. I have downloaded the 5.8.8. version of perl for windows, but i 'm unable to install it on win 2003 server & also of win XP .
|
| cscope for perl? | 29 Jun 2006 09:43 GMT | 1 |
I've heard that there is a way to make cscope work for perl. I can't find any info in the cscope man page or in perldocs. Can anyone point me in the right direction? Thanks in advance
|
| file script and cmd script difference | 29 Jun 2006 09:07 GMT | 3 |
Hi list, I'd like to ask explaination/help regarding this: 1)perl -e '%hash; for (`arp`) {($addr,$mac) = (split(/\s+/))[0,2]; $hash{$addr}= $mac } foreach (keys %hash) { print "\t $_ => $hash{$_}\n";}'
|
| error when install GetOpt::Tabular | 28 Jun 2006 21:07 GMT | 1 |
I encountered a problem when install GetOpt::Tabular. At the first step, I stopped. Here is the error output. [root@ambrose Getopt-Tabular-0.3]# perl ./Makefile.PL Config.pm did not return a true value at
|
| CGI Script to pass a file to different servers | 28 Jun 2006 08:15 GMT | 4 |
I need to pass a file from a cgi program to another remote cgipgms and I need to print the out on my web page - how to do it ? any idea ? I posted this query few back - but still I couldnt do it :(
|
| change where use warnings go.. | 27 Jun 2006 23:18 GMT | 3 |
I want to change where the warnings from use warnings goes. I already screwed around with STDERR so don't give me those suggestions (there are other things going to STDERR). and the same for use strict if possible.
|
| disappointing '.*?' | 27 Jun 2006 22:15 GMT | 8 |
this code: 1 #!/usr/bin/perl -w 2 3 $_ = " [11] [22] a ";
|