This file is indexed.

/usr/bin/jifty is in libjifty-perl 1.10518+dfsg-3ubuntu1.

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
#!/usr/bin/env perl
use warnings;
use strict;
use UNIVERSAL::require;

BEGIN {
    Jifty::Util->require or die $UNIVERSAL::require::ERROR;
    my $root = Jifty::Util->app_root(quiet => 1);
    unshift @INC, "$root/lib" if ($root);
}

use Jifty;
use Jifty::Script;

local $SIG{INT} = sub { warn "Stopped\n"; exit; };
Jifty::Script->dispatch();