This file is indexed.

/usr/bin/makeskkcdbdic is in dbskkd-cdb 1:2.00+0.20140502-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
#! /bin/sh
set -e

SKKTOCDBM=/usr/share/dbskkd-cdb/skktocdbm.sh
CDB=`which cdb 2>/dev/null`
[ -x "$CDB" ] || CDB=/usr/bin/cdb

if [ -z "$1" ]; then
    echo "usage: ${0##*/} SKK-JISYO [SKK-JISYO-CDB]" >&2
    exit 1
fi
if [ -z "$2" ]; then
    set -- "$1" "$1.cdb"
fi

sh "$SKKTOCDBM" < "$1" | "$CDB" -c -t - "$2"