#!/bin/sh
#
# /usr/local/bin/touch_em script from the Anonymizing Unix Project
# by van Hauser / THC <vh@reptile.rug.ac.be>
#
# This scripts sets all timestamps on the files to the current time
# It should be run regulary (e.g. every hour) via cron
#
# This would be the crontab line for root:
#    50 * * * *      root   /usr/local/bin/touch_them
#
PATH=/bin:/usr/bin

cd /
find /crypt /etc /tmp /var/lib /var/adm /var/spool /var/log 2> /dev/null | xargs -n 250 touch
