How to export shell variable within perl script
        Posted  
        
            by lamcro
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by lamcro
        
        
        
        Published on 2010-06-03T16:09:58Z
        Indexed on 
            2010/06/03
            16:34 UTC
        
        
        Read the original article
        Hit count: 284
        
I have a shell script, with a list of shell variables, which is executed before entering a programming environment.
I want to use a perl script to enter the programming environment:
system("environment_defaults.sh");
system("obe");
but I when I enter the environment the variables are not set.
© Stack Overflow or respective owner