If I run the application A from the command line, it will write some
output to screen and continue running on the foreground.
Now, in my perl tool program, I will call the application A and
collect some output of that application A. my perl program will be
used on Unix/Linux/Win32 system.
My pr
I Believe the perl on HP-UX was broken too.
Does the HP have official claim about this problem and good solution?
On 7/12/05, Chris Devers <[EMAIL PROTECTED]> wrote:
> On Mon, 11 Jul 2005, Ken Killer wrote:
>
> > perl on HP-UX doesn't include the strict.pm int
perl on HP-UX doesn't include the strict.pm into the core modules list?
Can't locate strict.pm in @INC (@INC contains:
/opt/perl5/lib/5.00502/PA-RISC1.1 /opt/perl5/lib/5.00502
/opt/perl5/lib/site_perl/5.005/PA-RISC1.1
/opt/perl5/lib/site_perl/5.005 . lib) at ./main.pl line 4.
--
To unsubscribe, e
I tried to add 'my' before $v, but I got same error as before.
On 7/5/05, Chris Devers <[EMAIL PROTECTED]> wrote:
> On Mon, 4 Jul 2005, Ken Killer wrote:
>
> > I load the config file in the main program using do,
> >
> > #!perl
> > do "c
I load the config file in the main program using do,
#!perl
do "conf";
use strict;
print "value of v is $v\n";
and the config file has only one line,
$v = 'hello';
when I run the main.pl, it reports following error, how to fix this?
Global symbol "$v" requ
hi,
I want to write a perl script that interactive with other program or
script. when I run
the jacl script which askes me to input some parameters interactively,
just like this,
when I issue java -jar install.jar , then I have to answer some questions
like below,
enable security ? (true|false)