This file is indexed.

/usr/share/doc/libparse-recdescent-perl/examples/demo_separators.pl is in libparse-recdescent-perl 1.967009+dfsg-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
37
38
39
40
#!/usr/bin/perl -ws

use Parse::RecDescent;

undef $::RD_WARN;

my $parse = Parse::RecDescent->new(<<'EOGRAMMAR');

{use Tie::Hash; }

line: <rulevar: local %max; tie %max, Tie::StdHash'; %max = (count=>0) >

line: seplist[sep=>',']
    | seplist[sep=>':']
    | seplist[sep=>" "]
    | { $max{item} }

seplist: <skip:"">
	 <leftop: /[^$arg{sep}]*/ "$arg{sep}" /[^$arg{sep}]*/>
          { $max{count} = @{$max{item} = $item[2]}
                if @{$item[2]} > $max{count};
          }
	 <reject>

EOGRAMMAR

while (<DATA>)
{
    chomp;
    my $res = $parse->line($_);
    print '[', join('][', @$res), "]\n";
}

__DATA__
c,o,m,m,a,s,e,p,a,r,a,t,e,d
c:o:l:o:n:s:e:p:a:r:a:t:e:d
s p a c e s e p a r a t e d
m u:l t i,s:ep ar:a,ted
m u:l,t i,s:ep ar:a,ted
m:u:l,t i,s:ep ar:a,ted