| Catmandu::Exporter::MARC::MARCMaker(3pm) | User Contributed Perl Documentation | Catmandu::Exporter::MARC::MARCMaker(3pm) |
Catmandu::Exporter::MARC::MARCMaker - Exporter for MARC records to USMARC
# From the command line
$ catmandu convert MARC --type XML to MARC --type MARCMaker < /foo/data.mrc
# From Perl
use Catmandu;
my $importer = Catmandu->importer('MARC', file => "/foo/bar.mrc" , type => 'XML');
my $exporter = Catmandu->exporter('MARC', file => "marc.xml", type => 'MARCMaker' );
$exporter->add($importer);
$exporter->commit;
See Catmandu::Exporter, Catmandu::Addable, Catmandu::Fixable, Catmandu::Counter, and Catmandu::Logger for a full list of methods.
Catmandu::Exporter
| 2022-09-27 | perl v5.36.0 |