This file is indexed.

/usr/lib/uucp/uutraf.pl is in uucp 1.07-20.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
#!/usr/bin/perl

open(FD, "/usr/sbin/uurate @ARGV|") || die("uutraf: starting uurate: $!\n");

while(<FD>) {
  if(/^(Compact summary|\(I\))/) {
	print "\n";
	$ok = 1;
  }
  next if (!$ok);
  print;
}
close(FD);