f22b34a823
Changes: https://metacpan.org/pod/release/RJBS/perl-5.24.0/pod/perldelta.pod Changes: https://github.com/Perl/perl5/compare/v5.24.0...v5.25.0-8-g51f69a2 Sponsored by: Absolight
11 lines
267 B
Text
11 lines
267 B
Text
The /usr/bin/perl symlink has been removed starting with Perl 5.20.
|
|
For shebangs, you should either use:
|
|
|
|
#!/usr/local/bin/perl
|
|
|
|
or
|
|
|
|
#!/usr/bin/env perl
|
|
|
|
The first one will only work if you have a /usr/local/bin/perl,
|
|
the second will work as long as perl is in PATH.
|