SparceMatrix
Technical User
Using "$/ = undef" and <STDIN> together
In a PERL script I need to open a text file to be read all at once and not line by line. I have been advised that the way to do this is to set $/ = undef, and this has worked nicely so far. But now I have to provide some input by way of <STDIN> and when this variable is undefined the input cycle for <STDIN> appears to hang and it won't apply my input properly either.
How do I make the code below work?
Is there some way I can apply the "$/ = undef" in an "open(<MYFILE>, "MyFile.txt")" statement and not make it global?
In a PERL script I need to open a text file to be read all at once and not line by line. I have been advised that the way to do this is to set $/ = undef, and this has worked nicely so far. But now I have to provide some input by way of <STDIN> and when this variable is undefined the input cycle for <STDIN> appears to hang and it won't apply my input properly either.
How do I make the code below work?
Code:
#!/usr/bin/perl
$/ = undef;
print "Enter first number: ";
# $one = <STDIN>;
chomp($one = <STDIN>);
print "Enter second number: ";
# $two = <STDIN>;
chomp($two = <STDIN>);
$result = $one * $two;
print "Your numbers were " . $one . " and " . $two .".\n";
print "The result is $result.\n";
Is there some way I can apply the "$/ = undef" in an "open(<MYFILE>, "MyFile.txt")" statement and not make it global?