The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Enbld::Command::Tutorial;

use strict;
use warnings;

use File::Spec;

use parent qw/Enbld::Command/;

sub do {

    my $module_path = $INC{'Enbld/Command.pm'};
    $module_path =~ s{/Command.pm$}{};

    my $path = File::Spec->catfile( $module_path, 'Tutorial.pm' );

    system ( 'perldoc', $path );

    return $_[0];
}

1;