Re: ksh in a perl program

2006-06-06 Thread Adriano Ferreira
On 6/6/06, Lakshmi Sailaja <[EMAIL PROTECTED]> wrote: I wanted to include the shell script, abc, as I want to access a variable. The shell script, abc, actually takes a value (val) from the user. I want to use that value (val) in my perl porgram. Is that possible? Perl may take a value from the

RE: ksh in a perl program

2006-06-06 Thread Lakshmi Sailaja
riano Ferreira [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 06, 2006 2:14 PM To: [EMAIL PROTECTED]; beginners@perl.org Subject: Re: ksh in a perl program On 6/6/06, Lakshmi Sailaja <[EMAIL PROTECTED]> wrote: > Can I include a korn shell script in a perl program? Not include, but you certai

Re: ksh in a perl program

2006-06-06 Thread Rance Hall
Adriano Ferreira wrote: On 6/6/06, Lakshmi Sailaja <[EMAIL PROTECTED]> wrote: Can I include a korn shell script in a perl program? Not include, but you certainly can execute a shell script from within a Perl program. I have done the following but I get a compilation failed error. abc is th

Re: ksh in a perl program

2006-06-06 Thread Mr. Shawn H. Corey
On Tue, 2006-06-06 at 14:06 -0500, Lakshmi Sailaja wrote: > Hello, > > Can I include a korn shell script in a perl program? > > I have done the following but I get a compilation failed error. > abc is the ksh script. > - > require "/home/xxx/yyy

Re: ksh in a perl program

2006-06-06 Thread Adriano Ferreira
On 6/6/06, Lakshmi Sailaja <[EMAIL PROTECTED]> wrote: Can I include a korn shell script in a perl program? Not include, but you certainly can execute a shell script from within a Perl program. I have done the following but I get a compilation failed error. abc is the ksh script. -