/usr/bin/tmxwc is in libxml-tmx-perl 0.31-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | #!/usr/bin/perl -s
use XML::TMX::Reader;
print STDERR "";
my $TTU = 0;
my $n = scalar(@ARGV);
for my $file (@ARGV) {
my $tm = XML::TMX::Reader->new($file);
my $TU = 0;
$tm->for_tu({-raw => 1 },
sub { $TU++ ;
print STDERR "\r$TU..." unless $TU%1000;
}
);
print STDERR "\r$file: $TU tu.\n";
$TTU += $TU;
}
print STDERR "total: $TTU tu.\n" if $n > 1;
__END__
=encoding utf-8
=head1 NAME
tmxwc - gives statistics about tmx files
=head1 SYNOPSIS
tmxwc tmx1 [tmx2 ...]
=head1 DESCRIPTION
Gives statistical information about TMX files like the number of
translation units.
=head1 AUTHOR
Alberto Simões, E<lt>ambs@cpan.orgE<gt>
=head1 SEE ALSO
perl(1).
=cut
|