in reply to How can I control perl binaries

"..this problem is a Unix problem where the -w is interpreted as a file name, and I get a -w file not found error..."
Instead of using the -w pragma why not just use use warnings in your programs.

Replies are listed 'Best First'.
Re^2: How can I control perl binaries
by Dan.Pinvidic (Initiate) on Jun 23, 2012 at 02:16 UTC
    There are other options (like -e) that I would like to use with this.

      You can't use or emulate -e on #! line, can you?