Too late for -T

2001-07-26 Thread Robert Bunn
Yup. Too late for -T. That's what it says whenever I put the -T on my shebang line. I have: perl -V Summary of my perl5 (revision 5 version 6 subversion 0) configuration: Platform: osname=MSWin32, osvers=4.0, archname=MSWin32-x86-multi-thread uname='' con

RE: Too late for -T

2001-07-27 Thread Jamie Krasnoo
Take the flags off of the shebang in the script and run the script through the Perl interpreter with the flag on the outside. So instead of running the program like: ./myproggie.pl Do run it as: perl -wT myproggie.pl When it says it's too late for -T. It really is too late. Hope this

Re: Too late for -T

2001-07-27 Thread Curtis Poe
--- Robert Bunn <[EMAIL PROTECTED]> wrote: > Yup. > > Too late for -T. > That's what it says whenever I put the -T on my shebang line. What's going on is that Perl needs to be started in taint mode and *then* the script gets fed to it. If you're trying to run

RE: Too late for -T

2001-07-27 Thread Robert Bunn
At 03:45 AM 7/27/01 -0700, you wrote: >Take the flags off of the shebang in the script and run the script >through the Perl interpreter with the flag on the outside. So instead of >running the program like: > >/myproggie.pl > >Do run it as: > >perl -wT myproggie.pl Yes, but . . . I wanted to run