mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-28 02:38:43 +00:00
20 lines
508 B
ReStructuredText
20 lines
508 B
ReStructuredText
.. include:: delete.rst.inc
|
|
|
|
Examples
|
|
~~~~~~~~
|
|
::
|
|
|
|
# delete a single backup archive:
|
|
$ borg delete -a Monday
|
|
# actually free disk space:
|
|
$ borg compact
|
|
|
|
# delete all archives whose names begin with the machine's hostname followed by "-"
|
|
$ borg delete -a 'sh:{hostname}-*'
|
|
|
|
# delete all archives whose names contain "-2012-"
|
|
$ borg delete -a 'sh:*-2012-*'
|
|
|
|
# see what would be deleted if delete was run without --dry-run
|
|
$ borg delete --list --dry-run -a 'sh:*-May-*'
|
|
|