This file is indexed.

/usr/share/kconf_update/kalarm-2.1.5-general.pl is in kalarm 4:17.12.3-0ubuntu1.

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 -w
# Convert pre-2.1.5 General section settings.

use strict;

while (<>)
{
	if (/^CmdXTerm=konsole/) {
		s/ -T / -p tabtitle=/;
		print "[General]\n";
		print $_;
	}
}