The following Perl code has an obvious inefficiency;

while (<>)
{
if ($ARGV =~ /\d+\.\d+\.\d+/) {next;}
... or do something useful
}

The code will step through every line of the file we don't want.

On the size of files this particular script is running on this is unlikely to make a noticeable difference, but for the sake of learning; How can I junk the whole file <> is working and move to the next one?

The purpose of this is because the sever this script runs on stores old versions of apps with the version number in the file name, I'm only interested in the current version.

link|improve this question

feedback

3 Answers

up vote 12 down vote accepted

grep ARGV first.

@ARGV = grep { $_ !~ /\d+\.\d+\.\d+/ } @ARGV;

while (<>)
{
  # do something with the other files
}
link|improve this answer
IC, you just filter @ARGV like you would any other list. – Chris Huang-Leaver Sep 14 '09 at 16:31
feedback

Paul Roub's solution is best if you can filter @ARGV before you start reading any files.

If you have to skip a file after you've begun iterating it,

while (<>) {
    if (/# Skip the rest of this file/) {
        close ARGV;
        next;
    }
    print "$ARGV: $_";
}
link|improve this answer
I would accept this answer too if I could. – Chris Huang-Leaver Sep 15 '09 at 7:55
feedback

Paul Roub's answer works for more information, see The IO operators section of perlop man page. The pattern of using grep is mentioned as well as a few other things related to <>.

Take note of the mention of ARGV::readonly regarding things like:

perl dangerous.pl 'rm -rfv *|'
link|improve this answer
1  
+1 for relevant links. – Chris Huang-Leaver Sep 14 '09 at 16:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.