Details |
Last modification |
View Log
Rev |
Author |
Line No. |
Line |
170 |
franck |
1 |
#!/bin/sh
|
|
|
2 |
# $Id: alcasar-log-clean.sh 64 2010-04-08 20:01:24Z franck $
|
|
|
3 |
# script de nettoyage des fichiers d'import supérieurs à 24h
|
|
|
4 |
|
|
|
5 |
DATE=`date +%F`
|
|
|
6 |
REP="/tmp"
|
|
|
7 |
delay=1
|
|
|
8 |
|
|
|
9 |
find $REP -mtime +$delay -name '*.pwd' -exec rm -f {} \;
|
|
|
10 |
|
|
|
11 |
exit 0
|