$^X is what you can usually look at
$ perl -E'say $^X;' /home/ikegami/usr/perlbrew/perls/5.14.2t/bin/perl
Unfortunately, it does not contain an absolute path for some systems. (I donโt know why. Maybe because the exact information is not available on these systems?) Probe :: Perl find_perl_interpreter works a lot to find the absolute path if $^X does not contain the absolute path.
$ perl -MProbe::Perl -E'say Probe::Perl->find_perl_interpreter();' /home/ikegami/usr/perlbrew/perls/5.14.2t/bin/perl
source share