Subject: | Poor shebang in prove command line script |
The shebang in the 'prove' command line script is artificially limiting:
http://cpansearch.perl.org/src/OVID/Test-Harness-3.28/bin/prove
#!/usr/bin/perl -w
is better written as
#!/usr/bin/env perl
use warnings;
This way, the 'prove' script can run in environments where Perl is not installed in /usr/bin, for example Windows (Strawberry Perl) and Haiku OS.