This file is indexed.

/usr/share/perl5/POE/Test/DondeEstan.pm is in libpoe-test-loops-perl 1.360-1ubuntu2.

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
package POE::Test::DondeEstan;
$POE::Test::DondeEstan::VERSION = '1.360';
use warnings;
use strict;

use File::Spec;

# It's a pun on Marco Polo, the swimming game, and Marco A. Manzo,
# this cool dude I know.  Hi, Marco!

sub marco {
	my @aqui = File::Spec->splitdir(__FILE__);
	pop @aqui;
	return File::Spec->catdir(@aqui);
}

1;