freebsd_amp_hwpstate/etc/periodic/weekly/320.whatis

20 lines
417 B
Bash
Executable File

#!/bin/sh -
#
# $Id: 320.whatis,v 1.1.1.1 1997/08/16 17:04:02 pst Exp $
#
if [ -x /usr/libexec/makewhatis.local -a -x /usr/bin/manpath ] ; then
echo ""
echo "Rebuilding whatis database:"
MANPATH=`/usr/bin/manpath -q`
if [ $? = 0 ]; then
if [ "x${MANPATH}" = "x" ]; then
echo "manpath failed to find any manpage directories"
else
/usr/libexec/makewhatis.local "${MANPATH}"
fi
fi
fi