This file is indexed.

/usr/share/perl5/App/Bot/BasicBot/Pluggable/Terminal.pm is in libbot-basicbot-pluggable-perl 1.20-1.

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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package App::Bot::BasicBot::Pluggable::Terminal;
$App::Bot::BasicBot::Pluggable::Terminal::VERSION = '1.20';
use Moose;
use Bot::BasicBot::Pluggable::Terminal;
extends 'App::Bot::BasicBot::Pluggable';

has '+bot_class' => ( default => 'Bot::BasicBot::Pluggable::Terminal' );

1;

__END__

=head1 NAME 

App::Bot::BasicBot::Pluggable::Terminal - alters the default bot class to L<Bot::BasicBot::Pluggable::Terminal>

=head1 VERSION

version 1.20

=head1 SYNOPSIS

App::Bot::BasicBot::Pluggable::Terminal->new()->run();

=head1 DESCRIPTION

This subclass of L<App::Bot::BasicBot::Pluggable> just alters the
default bot class to L<Bot::BasicBot::Pluggable::Terminal>. Nothing
fance here.

=head1 AUTHOR

Mario Domgoergen <mdom@cpan.org>

=head1 LICENSE

This program is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.