info.rst.inc 5.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .. IMPORTANT: this file is auto-generated from borg's built-in help, do not edit!
  2. .. _borg_info:
  3. borg info
  4. ---------
  5. .. code-block:: none
  6. borg [common options] info [options]
  7. .. only:: html
  8. .. class:: borg-options-table
  9. +-----------------------------------------------------------------------------+----------------------------------------------+--------------------------------------------------------------------------------------------------+
  10. | **options** |
  11. +-----------------------------------------------------------------------------+----------------------------------------------+--------------------------------------------------------------------------------------------------+
  12. | | ``--json`` | format output as JSON |
  13. +-----------------------------------------------------------------------------+----------------------------------------------+--------------------------------------------------------------------------------------------------+
  14. | .. class:: borg-common-opt-ref |
  15. | |
  16. | :ref:`common_options` |
  17. +-----------------------------------------------------------------------------+----------------------------------------------+--------------------------------------------------------------------------------------------------+
  18. | **Archive filters** — Archive filters can be applied to repository targets. |
  19. +-----------------------------------------------------------------------------+----------------------------------------------+--------------------------------------------------------------------------------------------------+
  20. | | ``-a PATTERN``, ``--match-archives PATTERN`` | only consider archive names matching the pattern. see "borg help match-archives". |
  21. +-----------------------------------------------------------------------------+----------------------------------------------+--------------------------------------------------------------------------------------------------+
  22. | | ``--sort-by KEYS`` | Comma-separated list of sorting keys; valid keys are: timestamp, name, id; default is: timestamp |
  23. +-----------------------------------------------------------------------------+----------------------------------------------+--------------------------------------------------------------------------------------------------+
  24. | | ``--first N`` | consider first N archives after other filters were applied |
  25. +-----------------------------------------------------------------------------+----------------------------------------------+--------------------------------------------------------------------------------------------------+
  26. | | ``--last N`` | consider last N archives after other filters were applied |
  27. +-----------------------------------------------------------------------------+----------------------------------------------+--------------------------------------------------------------------------------------------------+
  28. .. raw:: html
  29. <script type='text/javascript'>
  30. $(document).ready(function () {
  31. $('.borg-options-table colgroup').remove();
  32. })
  33. </script>
  34. .. only:: latex
  35. options
  36. --json format output as JSON
  37. :ref:`common_options`
  38. |
  39. Archive filters
  40. -a PATTERN, --match-archives PATTERN only consider archive names matching the pattern. see "borg help match-archives".
  41. --sort-by KEYS Comma-separated list of sorting keys; valid keys are: timestamp, name, id; default is: timestamp
  42. --first N consider first N archives after other filters were applied
  43. --last N consider last N archives after other filters were applied
  44. Description
  45. ~~~~~~~~~~~
  46. This command displays detailed information about the specified archive.
  47. Please note that the deduplicated sizes of the individual archives do not add
  48. up to the deduplicated size of the repository ("all archives"), because the two
  49. are meaning different things:
  50. This archive / deduplicated size = amount of data stored ONLY for this archive
  51. = unique chunks of this archive.
  52. All archives / deduplicated size = amount of data stored in the repo
  53. = all chunks in the repository.