Hello I was wondering if there is a way to read a unix profile'd variable while inside my PERL code?
I'm trying to do something like this.
system( " execute some code >> $UNIXVAR\log");
also tried
system( " execute some code >> '$UNIXVAR\log'");
I think though that the way I'm executing my application that I'm losing my profile's exported varibles.
I'm executing my app like this
./perlapp.pl
This is on an AIX Unix environment if this helps anyone.