Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    use strict;
    
    # (More program ...)
    
  2. or download this
    open(CHANGED, "changed.txt") || die "Can't open change log\n";
    my @changes = map { chomp; [ split('-', $_) ] } <CHANGED>;
    close(CHANGED);
    
  3. or download this
    $changes{$file} = \@changes;