X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=crontab;h=16b060e8fb4107f198495b7514023093f619c1d3;hb=5b04b72429f58d5c8b545f820c2a5fd5f7b0cafa;hp=247955aebcb4fe331250f028c0ebeef6d565ade6;hpb=6f4bf58f56c240a42c9ee3e8755ea1cb6748d000;p=config%2Fdotfiles.git diff --git a/crontab b/crontab index 247955a..16b060e 100644 --- a/crontab +++ b/crontab @@ -16,6 +16,6 @@ # along with this file. If not, see . -# Delete CtrlP cache files older than one month 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 +30 -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