Quick question:<br><FONT FACE=monospace><br>while (<STDIN> ne "quit"
<br>{<br> chop($data = <STDIN>
;<br> print STDOUT "standard in was: $data\n";<br>}<br></font><br><br>The above reads whatever the user types in and echo's it to the screen. However, there is a problem where only every other data input will get captured i.e.<br><br><FONT FACE=monospace><br>> ./stdin.pl<br>1<br>2<br>standard in was: 2<br>3<br>4<br>standard in was: 4<br>5<br>6<br>standard in was: 6<br>7<br>8<br>standard in was: 8<br>9<br>10<br>standard in was: 10<br></font><br><br>How can I ensure that everything written to STDIN will get placed in $data?<br><br>Cheers<br>Loon<br><br>