Easy question.

open(IN,"something.txt");
while($line = <IN>) {
    chomp($line);
    if ($line eq "something") {
        ## HOW DO I STOP THE WHILE AND MOVE ON?????
    }
}


Too little sleep + too much perl = deer in headlights.

Any help will be appreciated,
--Bill

Reply via email to