Are you adding $|=1 or $!=1 ? Setting $! is actually setting an error code. $|=1 is what was suggested--what that does (see perlvar man page) is set it to autoflush any output, so you're assured it goes to the screen immediately. otherwise, you could potentially have code like (i've had this happen in c way more than in perl) this, but you never see "hi":
do_stuff();
print "hi";
do_something_that_fatally_errors();
| [reply] [d/l] |
What errors do you get and the script still works fine?
CountZero "If you have four groups working on a compiler, you'll get a 4-pass compiler." - Conway's Law
| [reply] |