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/
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/
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]
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
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/
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:
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