This file is indexed.

/usr/share/kde4/apps/kconf_update/konsole-2.9.0-colorscheme-bold-key.sh is in konsole 4:4.13.0-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
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

# 'Bold=false' is non-functioning before konsole 2.9, but it might
# become functional in the future versions, so remove those entries as
# preparation for future changes.

local_path=`kde4-config --localprefix`
konsole_data_path="${local_path}/share/apps/konsole"

# do nothing when no user data exsit at all
if ! test -d "${konsole_data_path}" ; then
    exit 0
fi

cd "${konsole_data_path}"

for i in *.colorscheme ; do
    # no match? 
    if test "$i" = "*.colorscheme" ; then
        break
    fi

    sed -i '/Bold=false/d' "$i"
done