Koha/C4/SIP/interactive_patron_dump.pl
Joe Atzberger (siptest 01ec1e0a3d Expand interactive SIP tests.
Also tweak interactive item dump to suppress huge fields (marc, marcxml).

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
2009-06-17 11:42:44 -05:00

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);
}