PKGBUILDs/core/man-db/man-db.cron.daily

21 lines
309 B
Plaintext
Raw Normal View History

2009-10-10 02:17:35 +00:00
#!/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