Scroll to navigation

Catmandu::Exporter::MARC::Line(3pm) User Contributed Perl Documentation Catmandu::Exporter::MARC::Line(3pm)

NAME

Catmandu::Exporter::MARC::Line - Exporter for MARC records to Index Data's MARC Line format

SYNOPSIS

    # From the command line
    $ catmandu convert MARC to MARC --type Line < t/camel.mrc
    # From Perl
    use Catmandu;
    my $importer = Catmandu->importer('MARC', file => "t/camel.mrc", type => 'ISO');
    my $exporter = Catmandu->exporter('MARC', file => "camel.line", type => 'Line' );
    $exporter->add($importer);
    $exporter->commit;

CONFIGURATION

Write output to a local file given by its path or file handle. Alternatively a scalar reference can be passed to write to a string and a code reference can be used to write to a callback function.
Write the output to an IO::Handle. If not specified, Catmandu::Util::io is used to create the output handle from the "file" argument or by using STDOUT.
An ARRAY of one or more fixes or file scripts to be applied to exported items.
Binmode of the output stream "fh". Set to "":utf8"" by default.

METHODS

See Catmandu::Exporter, Catmandu::Addable, Catmandu::Fixable, Catmandu::Counter, and Catmandu::Logger for a full list of methods.

AUTHOR

Johann Rolschewski, <jorol at cpan>

SEE ALSO

Catmandu::Exporter

2022-09-27 perl v5.34.0