Closed vitahall closed 2 years ago
This allows for simple, portable use of /usr/bin/env in the shebang line, because then you don't need to split perl -w on any platform.
/usr/bin/env
perl -w
There shouldn't be any change in behavior from perl -w, and use warnings is compatible back to Perl 5.6 from 2000.
use warnings
Looks fine, thanks, will merge.
This allows for simple, portable use of
/usr/bin/env
in the shebang line, because then you don't need to splitperl -w
on any platform.There shouldn't be any change in behavior from
perl -w
, anduse warnings
is compatible back to Perl 5.6 from 2000.