This file is indexed.

/usr/bin/apertium-validate-dictionary is in apertium-dev 3.4.2~r68466-4.

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/bash
if [[ $# != 1 ]]; then
    echo "USAGE: $(basename $0) <input_file>"
    exit 1
fi

FILE1=$1

if [[ ! -e $FILE1 ]]; then
    echo "ERROR: '$1' file not found"
    exit 1
fi

# xsd is a non-final command, so just treated as a warning when compiling:
/usr/bin/xmllint --schema /usr/share/lttoolbox/dix.xsd --noout "$FILE1"
/usr/bin/xmllint --dtdvalid /usr/share/lttoolbox/dix.dtd --noout "$FILE1"