This file is indexed.

/usr/share/perl5/Term/Size/Perl/Params.pm is in libterm-size-perl-perl 0.029-1.

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
package Term::Size::Perl::Params; 

# created Sun Jan 22 21:58:54 2012

use vars qw($VERSION);
$VERSION = 0.029;

=head1 NAME

Term::Size::Perl::Params - parameters for Term::Size::Perl

=head1 SYNOPSIS

    $href = Term::Size::Perl::Params

=head1 DESCRIPTION

The configuration parameters C<Term::Size::Perl> needs to
know for retrieving the terminal size with C<ioctl>.

=cut

sub params {
    return (
        winsize => {
            sizeof => 8,
            mask => 'S!S!S!S!'
        },
        TIOCGWINSZ => {
            value => 21523,
            definition => qq{0x5413}
        }
    );
}

1;