This file is indexed.

/usr/share/perl5/Archive/Zip/Tree.pm is in libarchive-zip-perl 1.30-6.

This file is owned by root:root, with mode 0o644.

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
package Archive::Zip::Tree;

use strict;
use vars qw{$VERSION};
BEGIN {
	$VERSION = '1.30';
}

use Archive::Zip;

warn(
"Archive::Zip::Tree is deprecated; its methods have been moved into Archive::Zip."
) if $^W;

1;

__END__

=head1 NAME

Archive::Zip::Tree - (DEPRECATED) methods for adding/extracting trees using Archive::Zip

=head1 SYNOPSIS

=head1 DESCRIPTION

This module is deprecated, because all its methods were moved into the main
Archive::Zip module.

It is included in the distribution merely to avoid breaking old code.

See L<Archive::Zip>.

=head1 AUTHOR

Ned Konz, perl@bike-nomad.com

=head1 COPYRIGHT

Copyright (c) 2000-2002 Ned Konz. All rights reserved.  This program is free
software; you can redistribute it and/or modify it under the same terms
as Perl itself.

=head1 SEE ALSO

L<Archive::Zip>

=cut