Re: Storing Output file.

2016-01-28 Thread Malisetti Ram Murthy
Hi Frank, Invoke below command from your perl program to replace the string "Debug" to "Error": sed -i -e '/Debug/ r filter.txt' -e s/Debug/Error/g filter_replaced.txt Above solution is provided as per my knowledge, please post if there is any other solutions for this.

Re: files checksum perl program help

2012-01-05 Thread ram ram
checksum perl program help On 1/4/12 Wed  Jan 4, 2012  3:38 PM, ram ram ram_p...@yahoo.com scribbled: Hi ,    Wish you a Very Happy and Wonderful New Year. I am a beginner in perl programming. I request your help to write a perl program that takes 2 different directories on 2 different

Re: files checksum perl program help

2012-01-05 Thread ram ram
, 2012 11:34 AM Subject: Re: files checksum perl program help On 1/5/12 Thu  Jan 5, 2012  11:01 AM, ram ram ram_p...@yahoo.com scribbled: Thank You very much Jim for your immediate response. my requirement is that I have standard installation on server1 which is a master copy. I know

files checksum perl program help

2012-01-04 Thread ram ram
Hi ,    Wish you a Very Happy and Wonderful New Year. I am a beginner in perl programming. I request your help to write a perl program that takes 2 different directories on 2 different servers and find all the files in these 2 directories have the same files with same checksums. can anybody

Sonic MQ Client

2011-08-08 Thread Kelath, Ram
I'm on a project that requires sending requests to a Sonic MQ messaging system. Sonic MQ has client software for Java/.NET/C++ but, unfortunately, not Perl. Does anybody have any experience with writing a Perl interface to this system? There's a CPAN module called MQSeries-1.32 but I doubt if

RE: Oracle nightmare

2011-04-06 Thread Kelath, Ram
The DROP Table is likely failing because the table has already been dropped. One thing I noticed is that you set p1 to pippo using single quotes and p2 to não using double quotes. Not sure if that would be preserved when swapping out the parameters, but I would try using single quotes for

SOAP WSDL example

2009-12-29 Thread Ram Prasad
Hi All, I am trying to use SOAP WSDL for the first time I am not even able to initialize the script I am not sure if the WSDL is valid. How do I check this ? --- #!/usr/bin/perl use SOAP::WSDL; use Data::Dumper; my $soap = SOAP::WSDL-new(wsdl='http://smytoday.com/psmw/psmw? WSDL');

Automation

2008-06-30 Thread Ram
your valuable suggestions Thanks in advance. Ram -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: Automation

2008-06-30 Thread Ram
Thanks for your information. But here i am using Windows XP operating system Thanks, Ram On Jun 30, 12:57 pm, [EMAIL PROTECTED] (Eko Budiharto) wrote: you can use crontab in linux. On Mon, Jun 30, 2008 at 2:26 PM, Ram [EMAIL PROTECTED] wrote: Hi All, I am begineer to perl language

Re: How to replace some string in file

2008-06-05 Thread ram
On Thu, 2008-06-05 at 12:32 +0530, Santosh Reddy wrote: Hi All, I have a file called a.txt which has the following lines abcd efgh ijkl abcd123 12abcd I want to replace abcd with xyz. how do i do this. thanks a lot in advance perl -pli -e 's/abcd/xyz/' a.txt -- To

get the matching regex pattern

2008-03-20 Thread Ram Prasad
; } - I want to know if $x[0] matched or $x[1] matched What is the most efficient way of doing this ? Thanks Ram -- For spammers only [EMAIL PROTECTED] http://pragatee.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http

Re: Can I modify the contents of a file, without creating a new one?

2007-10-11 Thread Ram Prasad
s/\s+$/\n/; # For eg Trim all extra spaces in the end print; # Dont forget this } } This should work Thanks Ram Note To spammers: [EMAIL PROTECTED] http://pragatee.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: Load Test a web site

2007-10-09 Thread Ram Prasad
have tonnes of RAM for free Thanks Ram Note: to spammers only [EMAIL PROTECTED] [EMAIL PROTECTED] http://pragatee.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Perl: Mail 2 text utility

2005-09-16 Thread Ram
Is there any perl ( or any other ) utility that can extract just the text or html part of a message and return a string Thanks Ram -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ http://learn.perl.org/first-response

Re: firing an external program and exiting

2005-08-03 Thread Ram
Yes the user cgi script is running have permissions to execute that script... Infact with the above mentioned methods I am able to execute the script very well but my cgi script is waiting until it is getting finished, which I dont want. I only want my cgi script to call

Re: firing an external program and exiting

2005-08-03 Thread Ram
Let's try this again :) You were most of the way there the first time, and the shell script thing I suggested is unnecessary. system(command /dev/null ); # works for me Specifically: sleep.pl: #!/usr/bin/perl $|++; print STDERR time. start of sleep\n; sleep(5); print STDERR time.

firing an external program and exiting

2005-08-02 Thread Ram
I have a situation where a CGI script has to start an independent perl script and exit without capturing the output or waiting for the exit code. It doesnt make any practicle sense to me as this perl script takes good 6 hours to run and my CGI script obviously shouldnt keep the user waiting.