On Friday, April 12, 2002, at 04:59 , Wim wrote:
> OK!
>
> my script works! But when I use:
>
> my $rvar = <STDIN>;
>
> I have the same problem! Jesus, that's a hard one :-)
are you expecting a single line of input to come at you?
if not why not 'nest' it in a line read cycle
while(<STDIN>) {
chomp;
$rvar=$_;
# do stuff with this line of input from STDIN
}
ciao
drieux
---
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
