On 7/7/06, Monomachus <[EMAIL PROTECTED]> wrote:

    @ARGV = sort keys %do_these;

    while (<>) {

Isn't working (in Windows)... I need to push Ctrl-C to stop the proccess.

That sounds as if @ARGV ended up empty, by the time you got to the
diamond operator, and your program is trying to process STDIN. Could
%do_these have become empty? Check that @ARGV is non-empty before
starting that while loop and I think your program will run as you
would like.

Hope this helps!

--Tom Phoenix
Stonehenge Perl Training

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to