Re: CGI text process question

2003-08-11 Thread Tassilo von Parseval
On Wed, Aug 06, 2003 at 11:13:15PM -0500 Ben Jacobs-Swearingen wrote: > Hello all, this is my first post to this group, and I hope it isn¹t > inappropriate. Anyway I have the following code in a CGI I¹m working on, > it¹s supposed to translate the ugly %(hexhex) markers for non-alphanumeric > char

CGI text process question

2003-08-07 Thread Ben Jacobs-Swearingen
Hello all, this is my first post to this group, and I hope it isn¹t inappropriate. Anyway I have the following code in a CGI I¹m working on, it¹s supposed to translate the ugly %(hexhex) markers for non-alphanumeric characters back into normal text and assign the results to elements of an array. I

Re: Process question

2003-06-23 Thread John W. Krahn
Steve Blumenkrantz wrote: > > Since I didn't get any responses on my last question about process creation > and the killing of child processes I thought that maybe I'd switch gears a > bit and ask: > > On Unix does one know how I can get the process id of a process kicked off > from within a per

Process question

2003-06-23 Thread Steve Blumenkrantz
Since I didn't get any responses on my last question about process creation and the killing of child processes I thought that maybe I'd switch gears a bit and ask: On Unix does one know how I can get the process id of a process kicked off from within a perl script via the back-tic ("`") syntax?

Re: Win32::Process question

2003-02-26 Thread Jenda Krynicky
From: [EMAIL PROTECTED] > I'm hoping someone has done this before. I need to spawn 3 processes > and then wait for all three to finish. > > spawn like this: > my $obj; > my $appname = $perl; > my $cmdline = "$deliverscript $arg"; > my $iflags = 1; > my $cflags = CREA

FW: Win32::Process question

2003-02-25 Thread Peter_Farrar
>but how can I tell when all three are finished? If I use > $obj1->Wait(INFINITE); > $obj2->Wait(INFINITE); > $obj3->Wait(INFINITE); > >what happens if $obj2 finishes before $obj1? looks like this works fine... PHF -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Win32::Process question

2003-02-25 Thread Peter_Farrar
Hi All, I'm hoping someone has done this before. I need to spawn 3 processes and then wait for all three to finish. spawn like this: my $obj; my $appname = $perl; my $cmdline = "$deliverscript $arg"; my $iflags = 1; my $cflags = CREATE_NEW_CONSOLE | NORMAL_PRIORITY_