blob: d1137995d9745ab45c5a57d8bf1b6582c7cc30a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/perl
use strict;
use warnings;
use FS::Yori qw(reports report);
if ( @ARGV ) {
while ( my $report = shift ) {
print report($report). "\n";
}
} else {
print join("\n", reports() ). "\n";
}
1;
|