01ec1e0a3d
Also tweak interactive item dump to suppress huge fields (marc, marcxml). Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
18 lines
277 B
Perl
Executable file
18 lines
277 B
Perl
Executable file
#!/usr/bin/perl
|
|
#
|
|
|
|
use warnings;
|
|
use strict;
|
|
|
|
use ILS::Patron;
|
|
use Data::Dumper;
|
|
|
|
while (1) {
|
|
print "Enter patron barcode: ";
|
|
my $in = <>;
|
|
defined($in) or last;
|
|
chomp($in);
|
|
last unless $in;
|
|
my $patron = ILS::Patron->new($in);
|
|
print "Patron ($in):\n", Dumper($patron);
|
|
}
|