This file is indexed.

/usr/share/doc/libpod-eventual-perl/examples/dump.pl is in libpod-eventual-perl 0.094001-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
#!/usr/bin/perl
use strict;
use warnings;

our @events;

{
  package Pod::Gather;
  use base 'Pod::Eventual';
  sub handle_event { push @events, $_[1] }
}

use String::Truncate qw(elide);

Pod::Gather->read_file($ARGV[0]);

for my $event (@events) {
  my $content = defined $event->{content} ? $event->{content} : '';
  $content =~ s/\n.*//s;

  printf "%4u: %-10s %-10s %s\n",
    $event->{start_line},
    $event->{type},
    (defined $event->{command} ? $event->{command} : '(n/a)'),
    elide($content, 60);
}