#!/bin/csh
#Update timestamp on userdata files for wizards (and up) to prevent their
#userdata files from being deleted if they haven't logged on for a while.

if (! -d "userdata") then
        echo "Can't find userdata directory. Are you in the right place?"
        exit
endif

list_wiz | awk '{ print "touch", $1; }'| sh

