in reply to Re: vars going out of scope!
in thread vars going out of scope!
is this a perl install issue? stacks? weird stuff!# no strict or warnings $bla = "this and that"; $file = "c:\filea"; system("echo $bla > $file"); # this works if (1==1) #not the actual test, but it goes in this test { system("echo $bla > $file"); #this never occurs #if run by an exe that calls Perl -U this_script #and passes output to IIS #it does work from cmd prompt }
Chris
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: vars going out of scope!
by JamesNC (Chaplain) on Apr 23, 2003 at 02:33 UTC | |
by aquarium (Curate) on Apr 23, 2003 at 09:56 UTC |