/usr/share/perl5/perl5i/cmd.pm is in libperl5i-perl 2.13.1-3.
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 | 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 = $_[0];
# Remove the name from the import list before passing it along to perl5i.
my $name = splice(@_, 1, 1);
# Make the program identify as perl5i
$^X = $name;
goto &perl5i::latest::import;
}
1;
|