| Catmandu::Exporter::MARC::ISO(3pm) | User Contributed Perl Documentation | Catmandu::Exporter::MARC::ISO(3pm) |
Catmandu::Exporter::MARC::ISO - Exporter for MARC records to ISO
# From the command line
$ catmandu convert MARC --type ISO to MARC --type XML < /foo/bar.mrc
# From Perl
use Catmandu;
my $importer = Catmandu->importer('MARC', file => "/foo/bar.mrc" , type => 'ISO');
my $exporter = Catmandu->exporter('MARC', file => "/foo/bar.xml", type => 'XML' );
$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 |