Beefy Boxes and Bandwidth Generously Provided by pair Networks Frank
Problems? Is your data what you think it is?
 
PerlMonks  

Re: RE (tilly) 3: Get default login environment

by Ronnie (Scribe)
on Nov 18, 2004 at 05:43 UTC ( [id://408738]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to RE (tilly) 3: Get default login environment
in thread Get default login environment

I downloaded this code but it doesn't work! When I try and use it the following error occurs -
syntax error at xxrcprofsub.pl line 8, near "m/^(.*?)=((?:[^\n\\]|\\.| +\\\n)*)/gm ;"
The code to call this sub is also in a format that, novice that I am, I've not seen before -
%ENV = (%ENV, get_bash_login_env());
The ENV inside the brackets is throwing me. Is this the means by which the local (in the subroutine) %ENV is used to overwrite the existing %ENV? I've not seen this syntax before. Ronnie Cruickshank

Replies are listed 'Best First'.
Re^2: RE (tilly) 3: Get default login environment
by Happy-the-monk (Canon) on Nov 18, 2004 at 05:53 UTC

    It was missing a closing bracket just before the ";" in that line. This works:

    sub get_login_env { local %ENV; my $shell = shift || (getpwuid($<))[8]; my $env = `echo env | perl -e 'exec {"$shell"} -sh'`; if (wantarray) { my @pieces = ($env =~ m/^(.*?)=((?:[^\n\\]|\\.|\\\n)*)/gm ); s/\\(.)/$1/g foreach @pieces; return @pieces; } else { return $env; } }

    Cheers, Sören

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://408738]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.