> +    my $shebang = length $Config{perlpath} < 62
> +        ? "#!$Config{perlpath}\n"
> +        : <<EOI;
> +#!/usr/bin/perl

shouldn't this be something generic like

  #!perl

instead of /usr/bin/perl?  not even every unix installation has that.

> +    eval 'exec $Config{perlpath} -S \$0 \${1+"\$@"}'
> +        if \$running_under_some_shell;
> +EOI

--Geoff

Reply via email to