blob: fc91e7f20813156b990333c28a1352da88ecfcbb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/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
|