Tool to cleanup backup directory with daily, weekly and monthly backups
Go to file
Сергей Морозов c8700f1b1c Add timestamp description 2022-05-31 17:47:43 +03:00
tests Add timestamp description 2022-05-31 17:47:43 +03:00
LICENSE Initial commit 2022-05-31 00:53:43 +03:00
README.md Add timestamp description 2022-05-31 17:47:43 +03:00
clean-backups.py Add timestamp description 2022-05-31 17:47:43 +03:00

README.md

backupcleaner

Tool to cleanup backup directory with daily, weekly and monthly backups.

usage: clean-backups.py [-h] [-d N] [-w N] [-m N] [-f] PATH

Cleanup old backups

positional arguments:
  PATH               directory path

optional arguments:
  -h, --help         show this help message and exit
  -d N, --daily N    keep N daily backups, default: 7
  -w N, --weekly N   keep N weekly backups, default: 4
  -m N, --monthly N  keep N monthly backups, default: 3
  -f, --force        suppress remove confirmation
  -t FORMAT, --timestamp-format FORMAT
                     format of timestamp, default: %Y%m%d

For a complete timestamp format description, see the python strftime() documentation: https://docs.python.org/3/library/datetime.html#strftime-strptime-behavior