There are some 700 applications running for our client with different environment with their partners. Now our client is going to seperate his business from his partner, so he has to separate ...
I need to insert a cgi/pl script that redircts to a remote URL "http://www.mydoamin.com/index.html" can someone give me the proper code to achieve this?
Hello coders,
Please take a look at the below script for me. Its part of a datageneration tool that I'm developing.
My goal is for each date in the line that enclosed by <vdt></vdt> ta...
I am looking to count the number of times a word appears in a block of text. Lets say the word in question is "word".
It can be capitalized in any way (word, Word, wOrD, etc)
It can be c...
So, I made a little program to monitor a directory (FTP) for incoming files of a certain name and type. If a match, it processes the file. This is all working super, and as a PHP guy, I'm qu...
Hi everyone.
Sorry if im slow on the pick up here.
Im trying to recursively do a replacement of code in a lot of files, and nearly there, but not quite.
If someone could see or help m...
Hi everyone,
I currently have a perl script that looks at a directory, tallys up all the files in this folder and its subfolders, and reports the total file size in bytes.
Id like to mod...
I am having problems with an application where I use IO::Socket to query a listener. I believe what is happening is that the listener connects but is hung up processing and the timeout doesn'...
A while ago, I had gotten the following Perl script to do the following...
1. I have a collection of about 100000+ files located in a windows directory called C:\RawFiles with a variable nu...
Hi All
How do I pass a variable to Business::UPS
This works:
use Business::UPS;
my ($shipping,$ups_zone,$error) = getUPS(qw/GNDCOM 07719 08846 12/);
print "$shipping";
This Fai...
I need to print array data unless it's data is present in another array
e.g., print the contents of @mainArray unless it's present in @anotherArray
@mainArray = qw(apple pear orange che...
I have the following script that only prints out the 3 field in the record when it satifies the "IF" statement. I need it to print out the whole record.
open(OUT, "> minrecord.txt");
open(...
Hi All
I have a .txt file full of keywords I would like to print the total count of each keyword.
File looks like this:
expressions + hockey
hockey jewelry
cheerleading posters
che...
I like the output of this script from roth. I got my last script to work. But modding this to look only for ERRORS and print to txt file with server name and date as file name is beyond me at ...
I have this perl script that isn't working. I want it to display all of the songs that are in the folder, but it only shows 13 songs instead of the 24 that are in the folder. I can't figure ou...
I have ran through all of the directions on the website
http://www.bugzilla.org/docs/win32install.html
and i have not had any problems. But when I go to the site i am getting this:
...
Greenfly Problem:
Greenfly can reproduce asexually. After one week of life a lone female can produce eight
offspring a day. Starting at the beginning of day 1 with a single mature female,...
I'm trying to write a simple perl script but I'm getting this error among others. This one is the first one:
Bareword found where operator expected at C:Perl/bin/music.pl line 7 near opendir(...
Hi,
Trying to figure out how perl interprets some statements. I've got this:
my @array = 1,2,3,4,5,6,7,8,9,10,11;
print(length(@array));
# prints "1"
If I put parenthesi...
Hi All
Sort Fails With Letters Works With Numbers:
@Array =('a|3|c','d|7|b','b|8|g','e|5|d','c|4|j','f|2|r');
@Array = sort{(split/\|/,$a)[2] <=> (split/\|/,$b)[2]} @Array;
forea...
Hi All
How do I push if not "last" in an array
here is what I tried:
push (@Data, "<BR><HR size="1" noshade><BR>"){ if not last;}
I need to get this web page using perl to execute a start and stop script. The script is stored in /u1/test/bin and is called test1. The syntax to start the script is 'test1 start' and 'test1 ...
Hi, me again. I've asked about this question two times and I'm back to bug you all again ;) I'm trying to pull images from a sql database using Perl and had this problem fixed, but somehow it ...
Ok, I'm assigning 500 to what should be an easy question but 1) I need it quickly, and 2) it's driving me nuts.
Why doesn't "Event Log Watcher" get assigned to $process in the script below....
how should be regex for a purely summation formula excluding any multiply(*), mimus(-), divsion(/) ?
e.g.
extract formula
a = b + c + d + e
x = y + z
exclude formula
...