RE: Moving on....

2002-06-18 Thread Bob Showalter
M > To: Anders Holm > Cc: Perl List > Subject: RE: Moving on > > > Hi Anders, > > I actually tried that already. I thought it'd be the shell way of > solving it also, but it doesn't help any. It just sits there running > the first one. However, whe

Re: Moving on....

2002-06-18 Thread Tyler Longren
Gary, I tried the code you posted, and it has the same problem mine did. tyler On Tue, 2002-06-18 at 11:17, Gary Stainburn wrote: > On Tuesday 18 June 2002 5:08 pm, Tyler Longren wrote: > > Hello, > > Hi, > > > > > I have an smp machine that I want to run two instances of setiathome > > on.

RE: Moving on....

2002-06-18 Thread Tyler Longren
Hi Anders, I actually tried that already. I thought it'd be the shell way of solving it also, but it doesn't help any. It just sits there running the first one. However, when I quit the perl script, the s@h client is still running, and I don't want that. :) Thanks for the suggestion though,

Re: Moving on....

2002-06-18 Thread Gary Stainburn
On Tuesday 18 June 2002 5:08 pm, Tyler Longren wrote: > Hello, Hi, > > I have an smp machine that I want to run two instances of setiathome > on. I have two s@h directories (/root/.setiathome and > /root/.setiathome2). I wrote this to run both of them at the same time > right from one script.

Re: Moving on....

2002-06-18 Thread David T-G
Tyler, et al -- ...and then Tyler Longren said... % % Hello, % % I have an smp machine that I want to run two instances of setiathome % on. I have two s@h directories (/root/.setiathome and % /root/.setiathome2). I wrote this to run both of them at the same time % right from one script. If I

RE: Moving on....

2002-06-18 Thread Anders Holm
Maybe your looking to start them in the background using & at the end of your command like such: `cd $setiathome1_dir; ./setiathome -proxy 192.168.1.3:5517 &`; and `cd $setiathome2_dir; ./setiathome -proxy 192.168.1.3:5517 &`; , since I think that the first sub you have is waiting for the comm