Re: question about perl.

2003-03-27 Thread Wiggins d'Anconia
drieux wrote: On Thursday, Mar 27, 2003, at 16:16 US/Pacific, Wiggins d'Anconia wrote: the full on generic nature of the programme, which as you will note is psuedo code since (x=0) is not a valid statement in perl... so well, I was trying to be Nice... { he said sheepishly } Yeh and while

Re: question about perl.

2003-03-27 Thread drieux
On Thursday, Mar 27, 2003, at 16:16 US/Pacific, Wiggins d'Anconia wrote: Luinrandir Hernsen wrote: How do I run another perl program from within another perl program? if (x=0) { perl_ program_ 1.pl } else { perl_program_2 } exit; Surprised that neither of the other two (especially drieux) asked th

Re: question about perl.

2003-03-27 Thread Wiggins d'Anconia
Luinrandir Hernsen wrote: How do I run another perl program from within another perl program? if (x=0) { perl_ program_ 1.pl } else { perl_program_2 } exit; Surprised that neither of the other two (especially drieux) asked the question, "Why would you want to do such a thing?" ;-)... It would b

Fw: question about perl.

2003-03-27 Thread Dennis Stout
ent: Thursday, March 27, 2003 13 36 Subject: Re: question about perl. > I'm having a really good day apearently ... > > "You" is "Luinrandir Hernsen". Bah > > Anyone up for a beer :P > > Dennis Stout > S.T.O.U.T. = Synthetic Technic

Fw: question about perl.

2003-03-27 Thread Dennis Stout
Stout S.T.O.U.T. = Synthetic Technician Optimized for Ultimate Troublshooting - Original Message - From: "Dennis Stout" <[EMAIL PROTECTED]> To: "Luinrandir Hernsen" <[EMAIL PROTECTED]> Sent: Thursday, March 27, 2003 13 19 Subject: Re: question about perl. > You&

Re: question about perl.

2003-03-27 Thread drieux
On Thursday, Mar 27, 2003, at 11:07 US/Pacific, Luinrandir Hernsen wrote: How do I run another perl program from within another perl program? if (x=0) { perl_ program_ 1.pl } else { perl_program_2 } exit; there are several ways of solving this: a. perldoc -f system b. perldoc

Re: question about perl.

2003-03-27 Thread Dennis Stout
; <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 27, 2003 10 07 Subject: question about perl. How do I run another perl program from within another perl program? if (x=0) { perl_ program_ 1.pl } else { perl_program_2 } exit; -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

question about perl.

2003-03-27 Thread Luinrandir Hernsen
How do I run another perl program from within another perl program? if (x=0) { perl_ program_ 1.pl } else { perl_program_2 } exit;