http://qs1969.pair.com?node_id=56844


in reply to Too late for "-T"?
in thread Is this safe??

It's probably because you're running it as

perl foo.pl

When the first line of the script looks something like:

#!c:\perl\bin\perl -T

Just change the command line to perl -T foo.pl, or execute the script directly (i.e. don't run it through the interpreter on the command line) and you're golden.

P.S. "P.C." usually refers to the archictecture (i386), I understand you as meaning "Windows," my apologies if that assumption is incorrect.

HTH

Philosophy can be made out of anything. Or less -- Jerry A. Fodor

Replies are listed 'Best First'.
Re: Re: Too late for "-T"?
by SilverB1rd (Scribe) on Feb 07, 2001 at 19:49 UTC
    Thanks that was the problem. And yes I'm running perl in windows.