Help for this page

Select Code to Download


  1. or download this
    # Lines 4 and 5 are good Perl practice.  "strict" and "warnings" are p
    +ragmas
    # that help prevent Perl programmers from doing silly things in their 
    +programs.
    #
    
  2. or download this
    __END__
    Lines 4 and 5 are good Perl practice.  "strict" and "warnings" are pra
    +gmas
    ...
    print OUT "IGNORING ALL HISTORY FILES.\n";
    print OUT "LOWERCASING ALL FILE AND PATHNAMES BEFORE COMPARING.\n";
    print OUT "\n";
    
  3. or download this
    print OUT <<EOT;
    For unique files in OldInventory.txt:
    ...
    LOWERCASING ALL FILE AND PATHNAMES BEFORE COMPARING.
    
    EOT