This file is indexed.

/usr/bin/morbo is in libmojolicious-perl 2.23-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
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env perl

use strict;
use warnings;

use File::Basename 'dirname';
use File::Spec;

use lib join '/', File::Spec->splitdir(dirname(__FILE__)), 'lib';
use lib join '/', File::Spec->splitdir(dirname(__FILE__)), '..', 'lib';

# Check if Mojolicious is installed
die <<EOF unless eval 'use Mojo::Server::Morbo; 1';
It looks like you don't have the Mojolicious framework installed.
Please visit http://mojolicio.us for detailed installation instructions.

EOF

use Getopt::Long 'GetOptions';

# "Welcome to 'Entertainment And Earth Invasion Tonite'.
#  Across the galaxy my people are completing the mighty space fleet that
#  will exterminate the human race!
#  But first, this news from Tinseltown."
my $morbo = Mojo::Server::Morbo->new;
my ($help, @listen, @watch);
GetOptions(
  help => sub { $help = 1 },
  'listen=s' => \@listen,
  verbose    => sub { $ENV{MORBO_VERBOSE} = 1 },
  'watch=s'  => \@watch
);
$help = 1 unless my $app = shift;

# Usage
die <<"EOF" if $help;
usage: $0 [OPTIONS] [APPLICATION]

  morbo script/myapp
  morbo myapp.pl

These options are available:
  --help                     Show this message.
  --listen <location>        Set one or more locations you want to listen on,
                             defaults to "http://*:3000".
  --verbose                  Print details about what files changed to
                             STDOUT.
  --watch <directory/file>   Set one or more directories and files to watch
                             for changes, defaults to the application script
                             as well as the "lib" and "templates" directories
                             in the current working directory.
EOF

# "With Halley's Comet out of ice, Earth is experiencing a sudden case of
#  global warming.
#  Morbo is pleased but sticky."
$morbo->listen(\@listen) if @listen;
$morbo->watch(\@watch)   if @watch;
$morbo->run($app);

__END__

=head1 NAME

morbo - Morbo HTTP 1.1 and WebSocket development server

=head1 SYNOPSIS

  $ morbo --help
  $ morbo myapp.pl

=head1 DESCRIPTION

Start L<Mojolicious> and L<Mojolicious::Lite> applications with the
L<Mojo::Server::Morbo> web server.

=head1 SEE ALSO

L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.

=cut