SYNOPSIS
# From the command line
$ catmandu convert MARC --type MicroLIF --fix "marc_map('245a','title')" < /foo/data.lif
# From perl
use Catmandu;
# import records from file
my $importer = Catmandu->importer('MARC',file => '/foo/data.lif', type => 'MicroLIF');
my $fixer = Catmandu->fixer("marc_map('245a','title')");
$importer->each(sub {
my $item = shift;
...
});
# or using the fixer
$fixer->fix($importer)->each(sub {
my $item = shift;
printf "title: %s\n" , $item->{title};
});