Skip to content

Commit

Permalink
perl_swiss_army_knife.pl: output $PERL_VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Manning committed Jun 30, 2015
1 parent 4556db4 commit 384924d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions perl_swiss_army_knife.pl
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@

use strict;
use warnings;
use English;
use ExtUtils::MakeMaker;
use File::Find; # File::Find was first released with perl 5
use Scalar::Util qw(tainted);
Expand All @@ -50,9 +51,10 @@
} # if ( exists $ENV{'REQUEST_METHOD'} )

print "##################################################################\n";
print "# Perl Executable Name (\$^X) #\n";
print "# Perl Executable Name and Version (\$^V/\$^X) #\n";
print "##################################################################\n";
print qq(Executable name: $^X\n\n);
print qq(Executable name: $EXECUTABLE_NAME\n);
print qq(Executable version: $PERL_VERSION\n\n);

print "##################################################################\n";
print "# Perl Runtime Environment (\%ENV) #\n";
Expand Down

0 comments on commit 384924d

Please sign in to comment.