#!/usr/bin/perl
unless
(
@ARGV
>= 3 ) {
die
"Usage: $0 username password ticket_id\n"
;
}
my
$rt
=
);
$rt
->login(
username
=>
shift
(
@ARGV
),
password
=>
shift
(
@ARGV
),
);
my
$ticket
= RT::Client::REST::Ticket->new(
rt
=>
$rt
,
id
=>
shift
(
@ARGV
) );
my
$results
;
try
{
$results
=
$ticket
->attachments;
}
catch
{
die
$_
unless
blessed
$_
&&
$_
->can(
'rethrow'
);
if
(
$_
->isa(
'Exception::Class::Base'
) ) {
die
ref
(
$_
),
": "
,
$_
->message ||
$_
->description,
"\n"
;
}
};
my
$count
=
$results
->count;
print
"There are $count results that matched your query\n"
;
my
$iterator
=
$results
->get_iterator;
while
(
my
$att
=
&$iterator
) {
print
"Id: "
,
$att
->id,
"; Subject: "
,
$att
->subject,
"\n"
;
}