Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl -w #  print warnings
    use strict;
    ...
          print ">$File::Find::name  < is not a file or was not found\n";
    }
    
  2. or download this
    #!/usr/local/bin/perl -w
    use strict;
    ...
    if ( -f $_) {   print  "This is success - the file   $_  exist\n"};
    
    }