[Perl-unix-users] Dynamic meta tags

2002-02-04 Thread Rustagi, Dhiraj
Title: Dynamic meta tags All, Is it possible to add meta tags dynamically in a document using Perl? Thanks

[Perl-unix-users] check

2002-02-04 Thread Chris Nikou
how can i in perl check a variable called "weight" if it is in the range of 50-60? now a file question : if the weight variable is outside the 50-60 range i want to right it in a file called reject.txt else right it in a file called approved.txt  Do You Yahoo!? Yahoo! Auctions Great stuff seeking n

Re: [Perl-unix-users] check

2002-02-04 Thread Edward G. Orton
- Original Message - From: "Chris Nikou" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 04, 2002 6:35 PM Subject: [Perl-unix-users] check > > how can i in perl check a variable called "weight" if it is in the range of 50-60? > > now a file question : > > if the weight

[Perl-unix-users] same time...fork?

2002-02-04 Thread Chris Nikou
i want to make a procedure and work in a multiprocessor environment. how can i simulate this environment? is "fork" the right fuction? suppose i have "if (($weight >=50) && ($weight <= 60)) {    # $weight is in the proper range} else { # $weight is outside of the proper range}"i want 2 process

[Perl-unix-users] fork??

2002-02-04 Thread Chris Nikou
i want to make a procedure and work in a multiprocessor environment.how can i simulate this environment? is "fork" the right fuction? suppose i have "if (($weight >=50) && ($weight <= 60)) {    # $weight is in the proper range} else { # $weight is outside of the proper range}"i want 2 processor