RE: Can't print to screen | STDOUT messed up?

2005-03-01 Thread Darrell Gammill
Earthlink-m_ryanSent: Tuesday, March 01, 2005 12:44 PMTo: perl-win32-users@listserv.ActiveState.comSubject: Can't print to screen | STDOUT messed up? Has anyone ever accidentally changed the stdout for perl to nowhere. I can't print anything to the screen from the command prompt with

Re: Can't print to screen | STDOUT messed up?

2005-03-01 Thread Earthlink-m_ryan
Larry S. wrote: Try explicitly printing to STDOUT with:      print STDOUT "Hello world. \n";   Your script may have redirected print messages using:      select ;   From that point on, you need to explicitly print to STDOUT as in the example above. For more inform

Can't print to screen | STDOUT messed up?

2005-03-01 Thread Earthlink-m_ryan
Has anyone ever accidentally changed the stdout for perl to nowhere. I can't print anything to the screen from the command prompt with -#! /usr/bin/perl-wuse strict;print "Hello world. \n";exit;result = ""I run perl 5.6 on a windoze machine, this is the first time I've ever seen this.I check