This file is indexed.

/usr/share/doc/libace-perl/examples/gif.pl is in libace-perl 1.92-2build3.

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
#!/usr/local/bin/perl

use lib '..','../blib/lib','../blib/arch';
use Ace;

use constant HOST => $ENV{ACEDB_HOST} || 'stein.cshl.org';
use constant PORT => $ENV{ACEDB_PORT} || 200005;

die <<END if -t STDOUT;
Pipe the output to a file or a GIF displaying program.
 Examples:
           gif.pl | xv -
           gif.pl > output.gif
END

$ace = Ace->connect(-host=>HOST,-port=>PORT);
$m4 = $ace->fetch('Sequence', 'AC3' );
($gif,$box) = $m4->asGif;
print $gif;