The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
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;