Re: How do I redirect STDIN [Please, ignore this thread]

2006-02-12 Thread Ron Smith
Please, ignore this thread!! I've posted the correct thread under the subject: Redirecting STDOUT to an array. Ron Smith <[EMAIL PROTECTED]> wrote: Hi all, How would I redirect the output of the print line to an array instaed of STDOUT? my $firstBar = 5; print "*" while $firstBar, $firstBar--

How do I redirect STDIN

2006-02-12 Thread Ron Smith
Hi all, How would I redirect the output of the print line to an array instaed of STDOUT? my $firstBar = 5; print "*" while $firstBar, $firstBar--; I've looked in several places, including the Camel Book and the Cookbook. Everything seems to be refering to a filehandle instead.