Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: .env loading the dot env file?

by LanX (Saint)
on Mar 28, 2021 at 18:41 UTC ( [id://11130521]=note: print w/replies, xml ) Need Help??


in reply to .env loading the dot env file?

maybe tangential, but it's pretty easy to "source" a foreign rc-file (here bash) from Perl with this trick

my $bashcode=<<'__bash__'; . /tmp/src.sh; perl -MData::Dumper -e 'print Dumper \%ENV'; __bash__ my $VAR1; eval qx{bash -c "$bashcode"}; print $VAR1->{MONK};

original discussion: Re^3: How to "source" a shell file in Perl? (Trojan Dump)

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

Replies are listed 'Best First'.
Re^2: .env loading the dot env file?
by perlfan (Vicar) on Mar 28, 2021 at 20:01 UTC
    Very nice. The benefit here is that you don't have to do anything externally when invoking your script. Thank you and bookmarked :)
      Yes I like this inside-out approach too, since it's trivial to share data between different languages. :)

      BUT I should add that source has the same limitation like a do config.pl ... it's evaling code which might pose a bigger security problem than only "parsing" the file.

      OTOH that's also the case if the shell does it, before executing Perl.

      It wasn't clear to me what kind of .env the OP wants. And %ENV is always security relevant.

      Cheers Rolf
      (addicted to the Perl Programming Language :)
      Wikisyntax for the Monastery

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11130521]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (1)
As of 2024-04-18 23:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found