This file is indexed.

/usr/share/kde4/apps/kconf_update/knemo-0.5.2-misc.pl is in knemo 0.7.3-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
14
15
16
17
18
#!/usr/bin/perl -w

# Delete unused geometry keys in the interface_* groups

use strict;

while ( <> ) {
    next if ( /^$/ );
    if ( /^(\[.+\])$/ ) {
        my $currentGroup = $1;
        if ( $currentGroup =~ /^\[Interface_/ ) {
            print "# DELETE ${currentGroup}PlotterGeometry\n";
            print "# DELETE ${currentGroup}StatisticsGeometry\n";
            print "# DELETE ${currentGroup}StatusGeometry\n";
        }
    }
    next;
}