in reply to Re: Help me if possible..
in thread How do I get Perl on Windows 95?

she-bang options will work just fine. The Perl interpreter reads that line, even if Windows doesn't

not exactly. if you're using taint mode (-T), if it's on the shebang line, ActiveState will report 'too late to run taint mode' or somesuch. instead, it must be specified at command-line, as in 'perl -T myscript.pl'

and $^O (or $OSNAME) give you your OS.

~Particle

Replies are listed 'Best First'.
Info on 'too late to run taint mode' (boo)
by boo_radley (Parson) on Jul 14, 2001 at 00:33 UTC
    Particle sez :
    ActiveState will report 'too late to run taint mode' or somesuch. instead, it must be specified at command-line, as in 'perl -T myscript.pl'
    That's not exactly true.
    The "too late to run taint mode" error is indicative of running perl under IIS, though. Apache should run OK, according to memory, and the command line is good too, although it's a pain to troubleshoot CGI that way, occasionally.