Lines 100-106
my $result = GetOptions(
Link Here
|
100 |
'run-as-root' => \$run_as_root, |
100 |
'run-as-root' => \$run_as_root, |
101 |
'wait-for-lock' => \$wait_for_lock, |
101 |
'wait-for-lock' => \$wait_for_lock, |
102 |
't|table:s' => \$table, |
102 |
't|table:s' => \$table, |
103 |
'forks:i' => \$forks, |
103 |
'processes:i' => \$forks, |
104 |
); |
104 |
); |
105 |
|
105 |
|
106 |
if ( not $result or $want_help ) { |
106 |
if ( not $result or $want_help ) { |
Lines 1041-1046
Parameters:
Link Here
|
1041 |
--table specify a table (can be items, biblioitems, biblio, biblio_metadata) to retrieve biblionumber to index. |
1041 |
--table specify a table (can be items, biblioitems, biblio, biblio_metadata) to retrieve biblionumber to index. |
1042 |
biblioitems is the default value. |
1042 |
biblioitems is the default value. |
1043 |
|
1043 |
|
|
|
1044 |
--processes specify the number of processes (forks) for |
1045 |
parallel exporting authority or biblio records |
1046 |
(does not apply to the indexing step) |
1047 |
|
1044 |
--help or -h show this message. |
1048 |
--help or -h show this message. |
1045 |
_USAGE_ |
1049 |
_USAGE_ |
1046 |
} |
1050 |
} |
1047 |
- |
|
|