Windows users must manually delete any backup files. Linux users can insert a nightly or weekly automation script or cron similar to the following:
ls -t <path to your backup dir>/* | tail +6 | xargs -i rm {} 

  • No labels