The _______ Perl module gives the programmer the ability to work with LDIF files in Perl.
(Specify the module in Perl’s Module::Submodule… format.)
Answer: Net::LDAP::LDIF
Explanation/Reference:
http://search.cpan.org/~gbarr/perl-ldap-0.4001/lib/Net/LDAP/LDIF.podhttp://ldap.perl.org/
Wrong. It is Net::LDAP:LDIF…
Net::LDAP::LDIF provides a means to convert between Net::LDAP::Entry objects and LDAP entries represented in LDIF format files. Reading and writing are supported and may manipulate single entries or lists of entries.
As when reading an entire file into memory with perl normally, take into account the possibility of memory use when loading an LDIF file in one go.
I choose