How to install Win32 module...

2009-02-25 Thread Steve Pittman
I downloaded and unzipped the TAR file...how do I install it...directions say copy into lib which didn't work thanks in advance -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

What is the proper method for calling a shelll script?

2008-12-23 Thread Steve Pittman
Does any one have a good example? Best Regards, Steve -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Running scripts in the Background...

2007-06-20 Thread Steve Pittman
I have a perl script that I want to leave running after I close my terminal session...it's a tcpip listener... When i run the job in background mode and exit the term session...it terminates Any thoughts?thanks in advance..Steve! $ killMsgRcv.pl 9997 [Server killMsgRcv.pl accepting clients]

Re: Keeping a process alive..

2007-05-04 Thread Steve Pittman
PM >>> On 4/26/07, Steve Pittman <[EMAIL PROTECTED]> wrote: > I want to spawn a kornshell script Well, nobody's perfect. > - track the PID - and restart the script if the PID is destroyed. Can anyone > point me to a Perl reference for this? Do you really need to

Keeping a process alive..

2007-04-26 Thread Steve Pittman
All, I want to spawn a kornshell script - track the PID - and restart the script if the PID is destroyed. Can anyone point me to a Perl reference for this? Thanks, Steve -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: How to split a file on the CR carriage Return and/or replace the \r with \n ??

2006-07-28 Thread Steve Pittman
Thanks to everyone for your suggestions I replaced the INPUT_RECORD_SEPARATOR ($/) as suggested My script is working great!! Thanks Very Much!!! Steve >>> Robert Citek <[EMAIL PROTECTED]> 7/26/2006 5:06 PM >>> On Jul 26, 2006, at 2:59 PM, Steve Pittman wrote:

How to split a file on the CR carriage Return and/or replace the \r with \n ??

2006-07-26 Thread Steve Pittman
I am using activestate on a windows box ...the files I am parsing are Unix files...I tried this so far... open ( IN, "<$_[0]" )||die "Can't open DAT source file: $tempFile $!\n"; while (){s/\r/\n/g;@lines = ;}# close (IN); foreach $line (@lines) { -- To u