Re: [bug #53201] Target runs incorrect command when shebang line exceeds kernel limit

2018-03-17 Thread Casey McGinty
Interesting observation but I don’t follow how that is related to this issue. The interpreter is not yet running in this case. On March 17, 2018 at 10:12:54 AM, Brian Vandenberg ( phantall+gnum...@gmail.com) wrote: I cannot remark on pip specifically, but some script interpreters seem to

Re: [bug #53201] Target runs incorrect command when shebang line exceeds kernel limit

2018-03-17 Thread Brian Vandenberg
I cannot remark on pip specifically, but some script interpreters seem to ignore the shebang line if the script is passed as an argument: $ cat /tmp/blah.sh #!/bin/bash printf( "%s:%d\n", __FILE__, __LINE__ ); $ /tmp/blah.sh /tmp/blah.sh: line 2: syntax error near unexpected token `"%s:%d\n",'