I had the same problem and found that perl was not #! / Usr / bin / perl. neither perl -v nor / usr / bin / perl -v worked.
I did find / -name for perl and then added a symlink from / usr / bin to the real location
perl -v - bash: perl: command not found / usr / bin / perl -v - bash: / usr / bin / perl: no such file or directory
Find / -name perl / Opt / MKS / bin / perl5 / Perl / Opt / MKS / bin / Perl
ln -s / opt / ISS / bin / perl / usr / bin / perl perl -v
This is perl 5, version 14, subversion 1 (v5.14.1), built for x86_64-linux
Copyright 1987-2011, Larry Wall
Perl can only be copied under either the Artistic License or the GNU General Public License, which can be found in the original Perl 5 suite.
Full documentation for Perl, including lists of frequently asked questions, should be found on this system using "man perl" or "perldoc perl". If you have internet access, point your browser to http://www.perl.org/ , the Perl homepage.
/ usr / bin / perl -v
This is perl 5, version 14, subversion 1 (v5.14.1), built for x86_64-linux
Copyright 1987-2011, Larry Wall
Perl can only be copied under either the Artistic License or the GNU General Public License, which can be found in the original Perl 5 suite.
Full documentation for Perl, including lists of frequently asked questions, should be found on this system using "man perl" or "perldoc perl". If you have internet access, point your browser to http://www.perl.org/ , the Perl homepage.