I have this multi-platform application. it launches children that run for a short period of time.
I need to communicate from parent to child.
so just before launching the child, I do
$ENV{'varname'}='value';
and in the child, I get the environment variable and all is well.
this works on Windows without problem,
but the variable does not show up for the linux child.
in both cases I am actually starting a command shell script.
xxx.cmd on Windows and xxx.sh on linux.
the set command dumps the environment, and on linux the variable is not set when xxx.sh is started.
I do not need the value to be persistent, and I understand the reasons and issues there.
one piece of info, the child is started with OPEN so that the parent can monitor the childs console output
if($environmentDetails->GetValue() eq "Yes"){
$ENV{'SKIP_SYSTEM'}='0';
}
else{
$ENV{'SKIP_SYSTEM'}='1';
}
# have to execute the shell script from the current folder..
# *ix is picky, you must be explicit
open(CMD, ( ($^O eq 'MSWin32' ) ? "":"./")."$command 2>&1 |");
while(<CMD>){
$detailsInfo->AppendText($_);
}
on perl 5.10, linux fedora 10, 32 bit (can't update for other reasons)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.