This file is indexed.

/usr/share/doc/libbot-basicbot-pluggable-perl/examples/bot-basicbot-pluggable-cli is in libbot-basicbot-pluggable-perl 0.98-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
#!/usr/bin/perl
use warnings;
use strict;
use App::Bot::BasicBot::Pluggable::Terminal;

my $app = App::Bot::BasicBot::Pluggable::Terminal->new_with_options();

$app->run();

__END__