This file is indexed.

/usr/share/perl5/LinuxDocTools/Vars.pm is in linuxdoc-tools 0.9.67ubuntu1.

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
#
#  Vars.pm
#
#  $Id: Vars.pm,v 1.1.1.1 2001/05/24 15:57:41 sano Exp $
#
#  Shared variables.
#
#  © Copyright 1996, 1997, Cees de Groot
#
package LinuxDocTools::Vars;
use strict;

use Exporter;

use vars qw($VERSION @ISA @EXPORT);
@ISA = qw(Exporter);
@EXPORT = qw(%Formats $global %FmtList);
$VERSION = sprintf("%d.%02d", q$Revision: 1.1.1.1 $ =~ /(\d+)\.(\d+)/);

use vars @EXPORT;

1;