This file is indexed.

/usr/bin/textrr is in libtext-rewriterules-perl 0.25-1.

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
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/perl

eval 'exec /usr/bin/perl  -S $0 ${1+"$@"}'
    if 0; # not running under some shell

use Text::RewriteRules;
use strict;
Text::RewriteRules::_compiler();

=head1 NAME

textrr - rewrite rules compiler

=head1 SYNOPSIS

   $ textrr file.rr > file.pl

=head1 DESCRIPTION

L<Text::RewriteRules> converts rules into Perl on the fly. For
efficiency purposes, you can compile the rules into Perl code,
removing the overhead of parsing them when starting the script, and
removing the dependency to this module.

=head1 SEE ALSO

Text::RewriteRules

=cut