GNU bug report logs -
#31215
coreutils env fails in a bash shebang
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Wed, 18 Apr 2018 22:11:01 -0500
with message-id <8797b717-4ea0-a525-0912-1a522cd4f5fb <at> redhat.com>
and subject line Re: bug#31215: coreutils env fails in a bash shebang
has caused the debbugs.gnu.org bug report #31215,
regarding coreutils env fails in a bash shebang
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
31215: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=31215
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
I think I've found a bug in *coreutils*, *env*.
Linux debian 4.9.0-4-amd64 #1 SMP Debian 4.9.65-3+deb9u1 (2017-12-23)
x86_64 GNU/Linux
All my Perl scripts contain either of these shebangs:
#!/usr/bin/env perl -w
or
#!/usr/bin/env perl -wd
When I attempt to run a Perl script with either of these shebangs in debian
I get:
/usr/bin/env: ‘perl -w’: No such file or directory
It is not perl that can't be found; it is either *env*'s or *bash*'s
handling of the argument. If I remove the *-w* and/or the *-wd* arguments
the scripts execute, but of course, without the benefit of those switches.
The man page for *env* asserts that any command may take an argument. I
have tried every way I can think of to quote the *-w* and the *-wd* but
*env* is treating these perl command line arguments as filenames, and since
they aren't files, renders that error message. I'm running the latest
*coreutils* as in this apt-get fragment:
Reading package lists... Done
Building dependency tree
Reading state information... Done
coreutils is already the newest version (8.26-3).
Both of these shebangs work correctly in macOS 10.13.3 with the native perl
from Apple and perlbrew perl. That is where I do most of my perl work but
now I need to move those scripts to debian, without changing the shebangs.
Is this a bug in *env*, something in bash or pilot error?
Regards,
T.W. Schmidt
[Message part 4 (text/html, inline)]
[Message part 5 (message/rfc822, inline)]
[Message part 6 (text/plain, inline)]
tag 31215 notabug
thanks
On 04/18/2018 07:18 PM, William Schmidt wrote:
> I think I've found a bug in *coreutils*, *env*.
>
> Linux debian 4.9.0-4-amd64 #1 SMP Debian 4.9.65-3+deb9u1 (2017-12-23)
> x86_64 GNU/Linux
>
> All my Perl scripts contain either of these shebangs:
>
> #!/usr/bin/env perl -w
> or
> #!/usr/bin/env perl -wd
That is inherently non-portable. On some operating systems (such as
GNU/Linux), the #! line is limited to EXACTLY ONE argument beyond the
name of the executable. But you are trying to shoehorn two arguments
("perl" and "-w"). Just because it may have worked on some other
operating systems does not make it portable.
There may be ways to do what you want by telling perl to turn on -w or
-wd in subsequent lines of the script, or you can rewrite the #! line to
use /path/to/perl instead of trying to make env do the work. Or perldoc
even includes some arcane formulas for using #!/bin/sh as the start, and
then exec into perl with as many desired arguments as you want
(including by using env to locate perl), as the first line when
interpreted by sh, while that exec line is skipped by perl.
But as this is a limitation of your operating system's handling of #!
and not a bug in env, there's nothing we can do about it in coreutils'
env. So I'm closing this bug.
> Both of these shebangs work correctly in macOS 10.13.3 with the native perl
> from Apple and perlbrew perl. That is where I do most of my perl work but
> now I need to move those scripts to debian, without changing the shebangs.
> Is this a bug in *env*, something in bash or pilot error?
Pilot error, as you have used two different OS with different #!
handling rules.
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3266
Virtualization: qemu.org | libvirt.org
[signature.asc (application/pgp-signature, attachment)]
This bug report was last modified 7 years and 96 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.