This file is indexed.

/usr/bin/pspell-config is in libpspell-dev 0.60.7~20110707-1.3.

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
#!/bin/sh

# This script is provided for backward compatibility with programs
# that use pspell.  Do not use as it will eventually go away.

case $1 in
--version | version)
  echo 0.60.7-20110707
  ;;
--datadir | datadir)
  echo "/usr/share"
  ;;
--pkgdatadir | pkgdatadir)
  echo "/usr/share/aspell"
  ;;
*)
  echo "usage: pspell-config version|datadir|pkgdatadir"
  ;;
esac