This file is indexed.

/usr/share/perl5/perl5i/cmd.pm is in libperl5i-perl 2.8.0-1ubuntu1.

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
package perl5i::cmd;

# This is a shim for the perl5i command line utility to use.

use strict;
use parent 'perl5i::latest';

sub import {
    my($class, $name) = @_;

    # Make the program identify as perl5i
    $^X = $name;

    goto &perl5i::latest::import;
}

1;