PKGBUILDs/core/man-db/man-db.cron.daily
2009-10-09 21:17:35 -05:00

21 lines
309 B
Bash
Executable file

#!/bin/sh
# Update the "whatis" database
#/usr/sbin/makewhatis -u -w
# taken from Debian
# man-db cron daily
set -e
if ! [ -d /var/cache/man ]; then
# Recover from deletion, per FHS.
mkdir -p /var/cache/man
chmod 755 /var/cache/man
fi
# regenerate man database
/usr/bin/mandb --quiet
exit 0