This file is indexed.

/usr/share/perl5/URI/title.pl is in liburi-title-perl 1.86-2.

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
#!/usr/bin/perl
use warnings;
use strict;
use lib 'lib';
use URI::Title qw(title);
use Encode;

my $title = title(shift);
binmode STDOUT, ":utf8";
print $title || 'no title';
print "\n";