in reply to break out my foreach loop

Put my $octet; # or $octet = undef before the loop and do die "Some message" unless $octet; after the loop.

Replies are listed 'Best First'.
Re^2: break out my foreach loop
by hmb104 (Sexton) on Sep 02, 2012 at 06:52 UTC

    Thanks lidden, it works as intended. Is there a way to remove the error line from the die() msg?

    ERROR: IP not range: at /home/skippy/ip2log.pl line 177.

    Thanks for the heads up

      die "Some message\n";

        Thank you :)

        -hmb