Re: howto run a process which respawn after death.

1999-11-20 Thread lists
On Thu, Nov 18, 1999 at 06:49:12PM +0100, Roland Mas wrote:
 Felipe Alvarez Harnecker [EMAIL PROTECTED] writes:
 
  Is there a tool for start a proccess and after it dies the process
  respawn ? Just like init does but from the command line.
 
 $ while true ; do process ; done
 
 or
 
 $ (while true ; do process ; done) 
 
 should do the trick.

Be careful you don't try this with a process that automatically forks
itself into the background! Unless you're _trying_ to cause trouble on
your machine that is...


-- 
  finger for GPG public key.
  16 Nov 1999 - new key generated, please stop using the old.


pgpNtVMhoEqTZ.pgp
Description: PGP signature


howto run a process which respawn after death.

1999-11-18 Thread Felipe Alvarez Harnecker

Is there a tool for start a proccess and after it dies the process
respawn ? Just like init does but from the command line.


Thanks.

-- 
__

Felipe Alvarez Harnecker.  QlSoftware.

Tel. 09.874.60.17  e-mail: [EMAIL PROTECTED]

Potenciado por Ql/Linux  http://www.qlsoft.cl
__


Re: howto run a process which respawn after death.

1999-11-18 Thread Roland Mas
Felipe Alvarez Harnecker [EMAIL PROTECTED] writes:

 Is there a tool for start a proccess and after it dies the process
 respawn ? Just like init does but from the command line.

$ while true ; do process ; done

or

$ (while true ; do process ; done) 

should do the trick.