From 79218e828e9e2e78f8b8c0f54be1ca9b99937d55 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Fri, 3 Nov 2006 20:07:58 +0000 Subject: [PATCH] change terminology to offset and limit git-svn-id: svn+ssh://llin/home/dpavlin/private/svn/MARC-Fast/trunk@10 49f9634a-d7ec-0310-8e6b-ec35c6cc8804 --- scripts/dump_fastmarc.pl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/dump_fastmarc.pl b/scripts/dump_fastmarc.pl index eb0fd0c..b1d8702 100755 --- a/scripts/dump_fastmarc.pl +++ b/scripts/dump_fastmarc.pl @@ -19,13 +19,13 @@ dump_fastmarc.pl - display MARC records =over 16 -=item -n number +=item -o offset -dump just record C +dump records starting with C =item -l limit -import just first C records +dump just C records =item -h @@ -40,9 +40,9 @@ turn debugging output on =cut my %opt; -getopts('dn:l:h', \%opt); +getopts('do:l:h', \%opt); -my $file = shift @ARGV || die "usage: $0 [-n number] [-l limit] [-h] [-d] file.marc\n"; +my $file = shift @ARGV || die "usage: $0 [-o offset] [-l limit] [-h] [-d] file.marc\n"; my $marc = new MARC::Fast( marcdb => $file, -- 2.20.1