Rev 175 | Blame | Last modification | View Log
#!/bin/sh
# $Id$
# script de nettoyage des fichiers d'import supérieurs à 24h.
DATE=`date +%F`
REP="/tmp"
delay=1
find $REP -mtime +$delay -name '*.pwd' -exec rm -f {} \;
exit 0