Multiple 'do perlscript.pl' calls

2003-10-08 Thread Electron One
I have three questions and would really appreciate any help. 1. I am running a perl script that calls other perl scripts etc. All using the 'do perlscript.pl' method. Apparently these perl scripts have gotten so long that after a certain amount of 'do perlscript.pl' commands, the script crashes.

getopt

2003-08-21 Thread Electron One
Everyone, I'm trying to pass multiple args with a single switch, along with several other switches. Like so: script.pl -v file1 file2 file3 -s x -f y Problem: I don't want to use -v file1 -v file2 -v file3. Nor do I really want to single quote the -v file1 file2 file3. Anyone have any ideas? ___

Precision on addition Problem

2003-08-14 Thread Electron One
Hi all, I am experiencing an issue when I try to add a decimal multiple times in a for loop. This really throws off my calculations when I need such accurate analysis. If anyone can provide a reason for this occurrence or a way to stop this from happening I would greatly appreciate it. I am ru

Re: exec(...) not working in CGI-Perl with Indigo Apache/Perl on PC/XP

2003-03-20 Thread Electron One
Thanks. I'll try it, but don't think its a problem - each script has #!Perl as the first line and Apache knows that .pl files are Perl scripts. Don't want to return, so system would not apply here. At 01:25 PM 3/20/2003 +1100, Sisyphus wrote: - Original Message - From

Re: Another Regular expression problem

2003-03-10 Thread Electron One
s those chars in "\w" which doesn't include "$". So "$" is not include in the word, only "hello" is included. Can you explain this a little further, I dont understand you very well. Thanks very much. ted zeng "Stovall, Adrian M." wrote: >

Another Regular expression problem

2003-03-10 Thread Electron One
Hello Everyone, I have a perl file that has this, PerlFile.pl### #!/usr/bin/perl while(<>){ chomp; if(/\s*\$[a-z]\w+\s*/i){ #if(/\b\$[a-z]\w+\b/i){ print "Matched: $` -- $& -- $' :\n"; } el

Regular Expression matching problem

2003-03-09 Thread Electron One
Hello Everyone, If I have a file that contains this, test3.txt## wilma wimagren was here twilma was type wilma wilma wilma wilma twowilmase ###