This file is indexed.

/usr/bin/endnote-format is in libbiblio-endnotestyle-perl 0.05-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
#!/usr/bin/perl -w

eval 'exec /usr/bin/perl -w -S $0 ${1+"$@"}'
    if 0; # not running under some shell

# $Id: endnote-format,v 1.2 2007/02/16 01:16:48 mike Exp $

use strict;
use warnings;
use Getopt::Std;
use Biblio::EndnoteStyle;

my %opts;
if (!getopts('d', \%opts) || @ARGV < 1 || @ARGV % 2 != 1) {
    print STDERR "Usage: $0 [options] 'template' key1 val1 [keyN valN] ...
	-d	Dump compiled recipe to standard error\n";
    exit 1;
}

my($template, %data) = @ARGV;
my $style = new Biblio::EndnoteStyle();
$style->debug(1) if $opts{d};
print $style->format($template, \%data);