/cron.weekly/dwww
http://github.com/brinkman83/bashrc · Shell · 22 lines · 6 code · 8 blank · 8 comment · 4 complexity · a37535049758c860e4fe2c8f662090fd MD5 · raw file
- #!/bin/sh
- # $Id: dwww.cron.weekly,v 1.3 2007-12-16 09:56:31 robert Exp $
- #
- # This script creates an index of Debian documentation registered
- # with doc-base. See dwww-index++(8) man page for details.
- # check if swish++ is installed
- test -x /usr/bin/index++ || exit 0
- # check if dwww is still installed
- test -x /usr/sbin/dwww-index++ || exit 0
- set -e
- # See ionice(1)
- [ -x /usr/bin/ionice ] && IONICE="/usr/bin/ionice -c3" || IONICE=
- $IONICE dwww-index++ > /dev/null
- exit 0