This file is indexed.

/usr/share/doc/libfile-find-object-perl/examples/tree is in libfile-find-object-perl 0.2.13-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
#!/usr/bin/perl

# $Id$

use strict;
use warnings;
use File::Find::Object;
use Getopt::Long;

my %options;

GetOptions(
    'd' => \$options{depth},
    'n' => \$options{nonet},
    'f' => \$options{nocrossfs},
    'l' => \$options{followlink},
);

my $tree = File::Find::Object->new({ %options }, @ARGV);

while (my $r = $tree->next()) {
    print $r ."\n";
}