This file is indexed.

/usr/share/doc/libimage-exif-perl/examples/t.pl is in libimage-exif-perl 2.01-1build5.

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

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#!/usr/bin/perl -w

use strict;
use Image::EXIF;
use Data::Dumper;

my $exif = new Image::EXIF($ARGV[0] || "i424f2d1c0.jpg");

my $all_info = $exif->get_all_info();

print $exif->error ?
	$exif->errstr : Dumper($all_info);