mirror of
git://git.sv.gnu.org/findutils.git
synced 2026-01-26 20:03:22 +01:00
13 lines
277 B
Bash
13 lines
277 B
Bash
#! /bin/sh
|
|
#
|
|
# cron script to update the `find.codes' database.
|
|
#
|
|
# Written by Ian A. Murdock <imurdock@debian.org> and
|
|
# Kevin Dalley <kevin@aimnet.com>
|
|
|
|
if [ -f /etc/updatedb.conf ]; then
|
|
. /etc/updatedb.conf
|
|
fi
|
|
|
|
cd / && updatedb --localuser=nobody 2>/dev/null
|