/usr/lib/axiom-20170501/bin/htsearch is in axiom-hypertex 20170501-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 | #!/bin/sh
htbindir=$AXIOM/lib
htpagedir=$AXIOM/doc
if test -z "$1"
then
echo ""|$htbindir/presea case=1 -
else
( cd $htpagedir; $htbindir/hthits "$1" $htpagedir/ht.db | sort -r -n -k 1.22 | $htbindir/presea case=0 expr="$1" -)
fi
|