At 02:54 PM 7/6/01 -0400, Robert Aspinall wrote: >This just got odder. Looks like I'm reading the data in just fine, but it >won't print to the screen unless I preface and suffix it with a newline. >Any idea what could cause that? The usual: STDOUT is fully buffered by default. Stick $| = 1; above the code and it'll come out as you print it. -- Peter Scott Pacific Systems Design Technologies http://www.perldebugged.com
- Reading in a loop from a socket? Robert Aspinall
- Re: Reading in a loop from a socket? Robert Aspinall
- Re: Reading in a loop from a socket? Peter Scott
- Re: Reading in a loop from a socket? Robert Aspinall