RE: process signals

2004-05-07 Thread Bob Showalter
[EMAIL PROTECTED] wrote: > If you dont understand my question then I assume you do not know unix > or tail -f ? You're right, those are both new to me. > I want to after a sleep of 5-8 seconds, send a kill > signal to the previous command then increment the counter. thank > you! Sorry, I think

RE: process signals

2004-05-07 Thread Jayakumar Rajagopal
uot; <[EMAIL PROTECTED]> > 05/07/2004 01:16 PM > > > To: <[EMAIL PROTECTED]>, "Bob Showalter" > <[EMAIL PROTECTED]> cc: "Beginners Perl" > <[EMAIL PROTECTED]> > Subject:RE: process signals > > > Mr Smith, >

Re: process signals

2004-05-07 Thread DBSMITH
thank you! This was all I wanted as I am teaching myself perl and am still new. Derek B. Smith OhioHealth IT UNIX / TSM / EDM Teams Phil Schaechter <[EMAIL PROTECTED]> 05/07/2004 02:08 PM To: [EMAIL PROTECTED] cc: Subject: Re: process signals

RE: process signals

2004-05-07 Thread DBSMITH
D]> cc: "Beginners Perl" <[EMAIL PROTECTED]> Subject:RE: process signals Mr Smith, I saw your elementary question at about 8:50 AM. I did not answer it, since it was not clear to me too. I have seen Bob ( who I have never spoken with

RE: process signals

2004-05-07 Thread Jayakumar Rajagopal
--- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, May 07, 2004 12:36 PM To: Bob Showalter Cc: Beginners Perl Subject: RE: process signals If you dont understand my question then I assume you do not know unix or tail -f ? I want to after a sleep of 5-8 seconds, send a kill signal t

RE: process signals

2004-05-07 Thread Wiggins d Anconia
05/07/2004 10:57 AM > > > To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>, Beginners Perl > <[EMAIL PROTECTED]> > cc: > Subject:RE: process signals > > > [EMAIL PROTECTED] wrote: > > I have an appl

RE: process signals

2004-05-07 Thread DBSMITH
AIL PROTECTED]> 05/07/2004 10:57 AM To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>, Beginners Perl <[EMAIL PROTECTED]> cc: Subject:RE: process signals [EMAIL PROTECTED] wrote: > I have an application system command that is

RE: process signals

2004-05-07 Thread Bob Showalter
[EMAIL PROTECTED] wrote: > I have an application system command that is like tail -f in UNIX and > I want to say > > x=1 > while x < 10 > do > 'command' append to log > print "\n" append to log > issue HANGUP or KILL SIGNAL > x+=1 > done > > How do I issue a hangu

process signals

2004-05-07 Thread DBSMITH
I have an application system command that is like tail -f in UNIX and I want to say x=1 while x < 10 do 'command' append to log print "\n" append to log issue HANGUP or KILL SIGNAL x+=1 done How do I issue a hangup signal to this process using perl? Derek B. Sm