Help for this page

Select Code to Download


  1. or download this
    {
      my (%handles, %did_mkdir);
    ...
        return $handles{$make}{$model};
      }
    }
    
  2. or download this
    while (<>) {
      my ($make, $model) = split /,/, $_, 4;
      my $out = get_out_file($make, $model);
      print $out $line;
    }