| Thread | Last Post | Replies |
|
| 'use strict' and filehandles | 31 Aug 2006 21:34 GMT | 3 |
I'm running into a Cach-22 with 'use strict', and filehandles. I have a program which opens two log files at the beginning: open(INFLOG,">>$info_log") || die "Could not append to $info_log_file. Quitting.\n"; open(ERRLOG,">>$error_log") || die "Could not append to $error_log_file. ...
|
| what is wrong with my script | 31 Aug 2006 19:27 GMT | 1 |
I have a CGI script to process some data from the visitors. The input data takes this format(row x column): 1 2 4 5 6 7
|
| Totally lost - need a starting point | 31 Aug 2006 19:02 GMT | 10 |
I am trying to use an html script that will select an expect script, run it and display the output as text back into the html page. I get a very brief box showing up, it is so fast I am not sure what is in it. The expect script is very slow to execute so it will require time. The ...
|
| File locking issue | 31 Aug 2006 17:19 GMT | 2 |
I am trying to save data in an xml file. What I am seeing is when I enable the file locking commands the file is completely wiped out.Just zero bytes. But it works correctly when I remove the file locking commands.
|
| CORE DUMP by script !! | 31 Aug 2006 15:54 GMT | 2 |
Hi , One of my scripy (involves GDBM file operations) dumped core.I have the core file, but no idea what can I glean from that. I have tools like dbx and gdb but they need binaries along with the core file. So anyone knows how to decipher the core file of a ...
|
| Need some help filtering thru results | 31 Aug 2006 02:30 GMT | 1 |
We need to grab some data from a webpage fetch via the LWP module. This is the coding and the $resultdata below, need to regrex out various data, indicated by the [ ] brackets... see below for further explainations.
|
| general subroutine question | 30 Aug 2006 20:14 GMT | 6 |
All, Is there a commonly known way or method to limit the number of arguments that a subroutine can store or pass?
|
| Perl-mysql | 30 Aug 2006 17:23 GMT | 4 |
I would like to connect to a database stored at linux machine from my Windows machine. But I am unable to connect to the mysql server. Please help me regarding this issue.
|
| replace multiple tokens | 30 Aug 2006 12:45 GMT | 3 |
I have the follows code perl -e ' @a=(q{a...x name=taga_1 #...d name=tagb_1 f...r name=tagc_1 xxnn}, q{h...e name=taga_4 t...g name=tagb_4 k name=tagc_4 nn});
|
| Print to new file for each results | 30 Aug 2006 11:33 GMT | 2 |
I am tring to use part of someones elses code that creates a data file which prints out like this: ip|result|deptA|data ip|result|deptB|data
|
| splitting strings | 30 Aug 2006 08:48 GMT | 7 |
Given the string 'abcdefghijklmnopq', I wish to add a line break every 5 characters: abcde fghij
|
| STDOUT and STDERR to same file | 30 Aug 2006 04:28 GMT | 4 |
I have a daemon process that works but I am currently running it with script.pl > error.log 2>&1 and I want to do the same thing without using the redirection,, remove the human error when starting the program.
|
| Time::Local let me faint | 30 Aug 2006 04:21 GMT | 4 |
Hello,lists, Please see these two lines' output: [$ perl -Mstrict -MTime::Local -le 'print timelocal(0,0,0,31,8,2006)' Day '31' out of range 1..30 at -e line 1
|
| Switch, Ranges and Memory | 30 Aug 2006 02:41 GMT | 2 |
When using the range operator, is the list actually created with all the elements? For example, if I create a list like (123..456754), does it take up the same amount of memory as if I actually entered all those in between
|
| Can't create 2d array in Perl | 30 Aug 2006 02:33 GMT | 2 |
I would like to read a tab delimited text file created in Excel into a 2d array. I don't understand why the following doesn't work. The $i and $j, along with the print statement, are only for debugging purposes.
|