X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=crontab;h=16b060e8fb4107f198495b7514023093f619c1d3;hb=d103b2a72ed0152303f381ab91ea7b2a3721591b;hp=11c245689d4aaf35e607e434031edf1aa384747f;hpb=bcb680cf183100767b75a8a27622ef42de3dc033;p=config%2Fdotfiles.git diff --git a/crontab b/crontab index 11c2456..16b060e 100644 --- a/crontab +++ b/crontab @@ -16,6 +16,6 @@ # along with this file. If not, see . -# Delete CtrlP cache files older than one week to force CtrlP to repopulate -# the cache with current directory content. -36 */8 * * * D="$HOME/.vim/cache/ctrlp/"; test -d "$D" && find "$D" -name '\%*' -type f -mtime +7 -delete; true +# Delete CtrlP cache files older than one day to force CtrlP to repopulate the +# cache with current directory content. +36 */8 * * * D="$HOME/.vim/cache/ctrlp"; test -d "$D" && find "$D" -name '\%*' -type f -mtime +1 -delete; true