This file is indexed.

/usr/share/doc/libconfigreader-simple-perl/examples/example.pl is in libconfigreader-simple-perl 1.28-3.

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
#!/usr/bin/perl -w
#
# Testing ConfigReader::Simple
#
# Last updated by gossamer on Tue Sep  1 22:43:42 EST 1998
#

use ConfigReader::Simple;


my $config = ConfigReader::Simple->new("./example.config", [qw(Test1 Test2)]);

$config->parse();
$config->_validate_keys();  # die if there are keys in example.config 
                            # that aren't declared.

print "The value for directive Test1 is: " . $config->get("Test1") . "\n";