Subversion Repositories ALCASAR

Compare Revisions

Problem with comparison.

Ignore whitespace Rev HEAD → Rev 672

/scripts/alcasar-import-clean.sh
0,0 → 1,17
#!/bin/bash
# $Id$
 
# alcasar-import-clean.sh
# by Franck BOUIJOUX
# This script is distributed under the Gnu General Public License (GPL)
 
# nettoyage des fichiers de mots de passe générés après l'import d'une liste de nom (après 24h).
# delete password files generated during the importation of a names list (after 24 hrs)
 
DATE=`date +%F`
REP="/tmp"
delay=0
 
find $REP -mtime +$delay -name '*.pwd' -exec rm -f {} \;
 
exit 0
Property changes:
Added: svn:eol-style
+LF
\ No newline at end of property
Added: svn:executable
+*
\ No newline at end of property
Added: svn:keywords
+Date Author Id
\ No newline at end of property