Help for this page

Select Code to Download


  1. or download this
    while (<IN>) {  # first list
        next unless ( m:(.+?)#(\d+)$: );
        $pathname_versions{$1} = $2;
    }
    
  2. or download this
    while (<IN>) {  # second list
        next unless ( m:(.+?)#(\d+)$: );
        ...
        if ( $pathname_versions{$1} < $2 ) { ...