/usr/sbin/htdigconfig is in htdig 1:3.2.0b6-12.
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 -e
echo -n "Creating endings database for ht://Dig search engine..."
# Only create the endings database if it doesn't already exist.
# This database is static, so even if pages change, this database will not
# need to be rebuilt.
if [ ! -f /var/lib/htdig/word2root.db ]
then
htfuzzy $verbose endings
fi
if [ ! -f /var/lib/htdig/synonyms.db ]
then
htfuzzy $verbose synonyms
fi
echo "done."
|