Help for this page

Select Code to Download


  1. or download this
    # today's data -- your starting point
    my %SHIPS = (
    ...
      ],
      # other ships
    );
    
  2. or download this
    use Data::Dumper;
    print Data::Dumper::Dumper([\%SHIPS],[*SHIPS]); # save to file, don't 
    +print
    
  3. or download this
    my %SHIPS;
    do 'dumped_file';
    
  4. or download this
    while (<$CSV>) {
      chomp;
    ...
      $SHIPS{$shipname} = \@arr; # push back
    }
    # that's you done with the merge