This file is indexed.

/usr/share/konwert/devel/mergetrs is in konwert-dev 1.8-11.2.

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

while (<>)
{
	if (/^\t(\S+)\t(\S+)$/ && !$bylo{$1}) {$trs .= $_; $bylo{$1} = 1}
}

print $trs;