This file is indexed.

/usr/share/doc/libregexp-assemble-perl/examples/track-5.10 is in libregexp-assemble-perl 0.35-8.

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
#!/usr/bin/perl

use strict;
use warnings;

use lib 'blib/lib';
use Regexp::Assemble;

my $r = Regexp::Assemble->new->track(1)->add(qw(foo? bar{2} [Rr]at));

for my $w (qw(this food is rather barren)) {
	if ($w =~ /$r/) {
		print "$w matched by ", $r->source($^R), $/;
	}
	else {
		print "$w no match\n";
	}
}