Hi,
You should think of a glob as an alias.
$input = *STDIN;
$file = <$input>;
print $file;
All that does is alias $input to STDIN, and then read the contents of
$input into $file. The main use of this is redirecting your output without
having to write loads of extra code
R
At 13:19 16
Zentara wrote:
>
> Hi,
Hello,
> I'm looking at a script that takes a file on STDIN.
perldoc -q "How can I read in an entire file all at once"
Found in /usr/lib/perl5/5.6.0/pod/perlfaq5.pod
How can I read in an entire file all at once?
> ###
> #!/us