Download speed estim.

This commit is contained in:
ville rantanen
2013-11-09 12:01:22 +02:00
parent 0fd0dc5a9f
commit 6f885ea19e
2 changed files with 74 additions and 25 deletions

View File

@@ -10,7 +10,7 @@ function cacheusage {
}
if [ -z "$1" ]
then echo partial/revisions/conflicts: '(-f to delete all. -p/-r to delete +3 days)'
then echo partial/revisions/conflicts: '(-f to delete all. -p/-r to delete +1/+3 days)'
cacheusage
exit 0
fi
@@ -25,7 +25,7 @@ do case ${OPTS} in
find "$AEROAUX/r" -mindepth 1 -type f -mtime +3 -exec rm -Rf \{\} \;
;;
p)
find "$AEROAUX/p" -mindepth 1 -type f -mtime +3 -exec rm -Rf \{\} \;
find "$AEROAUX/p" -mindepth 1 -type f -mtime +1 -exec rm -Rf \{\} \;
;;
esac