Advertisement

635 organizations, including eBay, Ericsson and Lockheed Martin, now work smarter with Corporate Accounts. Save up to 42%

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Top Perl Solutions: 76 - 100 of 317
 
I've to FTP few .txt files from the remote location and I've the following code to do it. When I'm reading the remote files (only .txt) I want my perl script to be case insensitive that mea...
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: ...
I have two set of values  ABCD|CDE|EDFF 1234|321|234| I want to insert these values using Perl script to a table in Sybase something like this: Name     Value ABCD     1234 CDE     1234 EDFF     ...
      my $message;       for ($i = 0 ; $i  <= $#param ; $i++ )      {           print $param[$i], "\n";           $message = join ( $message, $param[$i]);      } print $message, "\n"; I am novice in perl. H...
Hi,    I have a log file and I do grep "doMatch\(\)" info.log | tail -5 with the output like Case 1: =================== 2008-10-29 17:52:28,606 [INFO ] AM_thread -- END doMatch() 20...
Is there a way to copy one file to another file with an append or do a cat like you can in DOS?  I cannot open the file and read it in line by line because it is an export dump done by the sys...
Trying to learn some perl here. I decided to take on an exercise that requires me to write a perl program to find out the longest word(s) in a text file. I figure what I need is a hash, with t...
I have pom.xml files for different modules in different folders, I am trying to update version in these pom.xml file, and this is where I am trying to update version number <modelVersion>4....
Hi Experts,  I would appreciate some perl/shell scripts which I can use to edit an XML file to insert the data which i have in a flat file. For ex: Here is a sample XML file <oim-data r...
Basically I want to create a perl FTP script that loops every 10 minutes. Below is a copy of the script I have written so far. use Net::FTP; my $number = 1; while ($number == 1) {  ...
I am creating a simple table in oracle 10g database ,getting the error. Can some help please . SQL>  create table CREDENTIALS   2  (   3          id bigint auto_increment NOT NULL,   4  ...
Hello, I am new to Sun Solaris. I like it so far but I am having problems with some of my bash scripts. I am trying to run a backup script which does a system call and stores that value in...
I am not able to update the rentals of a mls database. all other classes update and nothing changed in the database ?
HI, I have used SOAP::Lite in the past to make a trivial call from perl, but now I need to send much more information in with the SOAP request, and I can't figure it out. I'm planning to u...
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'...
Hi, I am writing a soap::lite client to send/receive xml request to a .net web service. problem is the xml request is getting very complicated and deep. Its there a way to import a pre made x...
I'm back again with yet another question about ImageMagick...yay. So, I am unable to get ImageMagick to work with the method I'm using to display a picture. All I want to do is pull the image ...
I have a list of mac address in a flat text file. The mac addresses are the first coloumn in the file. I need some code to remove all other columns but the mac address AND add some text before...
This question is actually a continuation of another question. http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_23830856.html The hash generated based of the code fr...
I have a Perl script that I have loaded into Eclipse (using the EPIC plugin). In both the Perl perspective and the Debug perspective, I have tried to execute a command in the Display view. ...
I have a file that's contents look as such: CAGAAP::G_ACY::SHELGAP::CY CAGAAP::G_APY1::SHLGAP::APY1 CAGAAP::G_APY2::SHLGAP::APY2 The delimiter is indeed two colons (::).  I need each rec...
Are there any good examples which show how to generate xml file using perl.
the code returns time in Sat Aug 30 00:32:47 2008 format using win32::eventlog  hash from $evt->Read(EVENTLOG_FORWARDS_READ|EVENTLOG_SEEK_READ,$oldest+$start,$evtHashRef) could y...
Hi everyone i hope all of you are fit and well and would love your input. Guys, I have been working on a project sending a variable to a perl cgi script from a php page. ########## OUTC...
This can be consider a continuation of my last question (http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_23754157.html) In my previous question I wanted to increment ...