Help for this page

Select Code to Download


  1. or download this
    my @files = ();
    
  2. or download this
    find(sub { $File::Find::name =~ m/${directory}(.*)$/; push @files, $1}
    +,  $directory);
    @files = grep { is_dos_format("$directory/$_") } @files;
    
  3. or download this
    foreach my $file (@files) {
        print "FAILED FILE - $file\n";
    }
    
  4. or download this
            if ($_ =~ m/\r\n/) {
    
  5. or download this
    #!/usr/bin/perl
    
    ...
           } }, $directory;
    
    __END__