|
Lines 1-8
Link Here
|
| 1 |
#!/usr/bin/perl |
1 |
#!/usr/bin/perl |
| 2 |
# Import an iso2709 file into Koha 3 |
2 |
# Import an iso2709 file into Koha 3 |
| 3 |
|
3 |
|
| 4 |
use strict; |
|
|
| 5 |
use warnings; |
| 6 |
use Modern::Perl; |
4 |
use Modern::Perl; |
| 7 |
#use diagnostics; |
5 |
#use diagnostics; |
| 8 |
BEGIN { |
6 |
BEGIN { |
|
Lines 825-830
If no filename is passed, LocalChanges.pm is assumed to be in the
Link Here
|
| 825 |
migration_tools subdirectory. You may pass an absolute file name or a file name |
823 |
migration_tools subdirectory. You may pass an absolute file name or a file name |
| 826 |
from the migration_tools directory. |
824 |
from the migration_tools directory. |
| 827 |
|
825 |
|
|
|
826 |
=item B<-marcmodtemplate>=I<TEMPLATE> |
| 827 |
|
| 828 |
This parameter allows you to specify the name of an existing MARC |
| 829 |
modification template to apply as the MARC records are imported (these |
| 830 |
templates are created in the "MARC modification templates" tool in Koha). |
| 831 |
If not specified, no MARC modification templates are used (default). |
| 832 |
|
| 828 |
=back |
833 |
=back |
| 829 |
|
834 |
|
| 830 |
=cut |
835 |
=cut |
| 831 |
- |
|
|