Next Program Repair Shop 33

CopyFiles

      53                next if ($file =~ /^\./);
      54                next if !($file =~ (/[0-9]/));
      55                next if !($file =~ (/txt/));
        perl -MO=Deparse -e 'next if !($file =~ (/txt/));'
        # Output:
        next if not $file =~ /txt/;


Next Copyright © 2002 M. J. Dominus