Bug 7607: (follow-up) Address OPAC and limits
[koha.git] / C4 / SIP / interactive_patron_dump.pl
blobafc3bcc55d02f809f226b7b9d4c9eeabdecd591b
1 #!/usr/bin/perl
4 use warnings;
5 use strict;
7 use C4::SIP::ILS::Patron;
8 use Data::Dumper;
10 while (1) {
11 print "Enter patron barcode: ";
12 my $in = <>;
13 defined($in) or last;
14 chomp($in);
15 last unless $in;
16 my $patron = C4::SIP::ILS::Patron->new($in);
17 print "Patron ($in):\n", Dumper($patron);