#!/bin/sh
#
# Last modification: Fri, 15 May 1998 08:53:07 +0300
# man-db cron daily

# expunge old catman pages which have not been read in a week
nice \
  find /var/cache/man -type f -name '*.gz' -atime +6 -print \
  | xargs -r  rm -f

