Devel::FindPerl(3pm) | User Contributed Perl Documentation | Devel::FindPerl(3pm) |
Devel::FindPerl - Find the path to your perl
version 0.016
use Devel::FindPerl 'find_perl_interpreter'; system find_perl_interpreter, '-e', '...';
This module tries to find the path to the currently running perl. It (optionally) exports the following functions:
This function will try really really hard to find the path to the perl running your program. I should be able to find it in most circumstances. Note that the result of this function will be cached for any serialized value of $config. It will return a list that usually but not necessarily is containing one element; additional elements are arguments that must be passed to that perl for correct functioning.
Tests if the perl in $path is the same perl as the currently running one.
This module by default does things that are not particularly secure (run programs based on external input). In tainted mode, it will try to avoid any insecure action, but that may affect its ability to find the perl executable.
This module has much the same purpose as Probe::Perl, in fact the algorithm is mostly the same as both are extracted from Module::Build at different points in time. If I had known about it when I extracted it myself, I probably wouldn't have bothered, but now that I do have it there are a number of reasons for me to prefer Devel::FindPerl over Probe::Perl
Leon Timmermans <leont@cpan.org>, Randy Sims <randys@thepierianspring.org>
This software is copyright (c) 2012 by Randy Sims, Leon Timmermans.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2022-10-22 | perl v5.36.0 |