| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 | .. IMPORTANT: this file is auto-generated from borg's built-in help, do not edit!.. _borg_repo-list:borg repo-list--------------.. code-block:: none    borg [common options] repo-list [options].. only:: html    .. class:: borg-options-table    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    | **optional arguments**                                                                                                                                                                                                                                                                                       |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    |                                                                             | ``--short``                                  | only print the archive IDs, nothing else                                                                                                                                        |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    |                                                                             | ``--format FORMAT``                          | specify format for archive listing (default: "{archive:<36} {time} [{id}]{NL}")                                                                                                 |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    |                                                                             | ``--json``                                   | Format output as JSON. The form of ``--format`` is ignored, but keys used in it are added to the JSON output. Some keys are always present. Note: JSON can only represent text. |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    | .. class:: borg-common-opt-ref                                                                                                                                                                                                                                                                               |    |                                                                                                                                                                                                                                                                                                              |    | :ref:`common_options`                                                                                                                                                                                                                                                                                        |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    | **Archive filters** — Archive filters can be applied to repository targets.                                                                                                                                                                                                                                  |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    |                                                                             | ``-a PATTERN``, ``--match-archives PATTERN`` | only consider archives matching all patterns. see "borg help match-archives".                                                                                                   |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    |                                                                             | ``--sort-by KEYS``                           | Comma-separated list of sorting keys; valid keys are: timestamp, archive, name, id, tags, host, user; default is: timestamp                                                     |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    |                                                                             | ``--first N``                                | consider first N archives after other filters were applied                                                                                                                      |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    |                                                                             | ``--last N``                                 | consider last N archives after other filters were applied                                                                                                                       |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    |                                                                             | ``--oldest TIMESPAN``                        | consider archives between the oldest archive's timestamp and (oldest + TIMESPAN), e.g. 7d or 12m.                                                                               |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    |                                                                             | ``--newest TIMESPAN``                        | consider archives between the newest archive's timestamp and (newest - TIMESPAN), e.g. 7d or 12m.                                                                               |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    |                                                                             | ``--older TIMESPAN``                         | consider archives older than (now - TIMESPAN), e.g. 7d or 12m.                                                                                                                  |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    |                                                                             | ``--newer TIMESPAN``                         | consider archives newer than (now - TIMESPAN), e.g. 7d or 12m.                                                                                                                  |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    |                                                                             | ``--deleted``                                | consider only soft-deleted archives.                                                                                                                                            |    +-----------------------------------------------------------------------------+----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+    .. raw:: html        <script type='text/javascript'>        $(document).ready(function () {            $('.borg-options-table colgroup').remove();        })        </script>.. only:: latex    optional arguments        --short     only print the archive IDs, nothing else        --format FORMAT    specify format for archive listing (default: "{archive:<36} {time} [{id}]{NL}")        --json      Format output as JSON. The form of ``--format`` is ignored, but keys used in it are added to the JSON output. Some keys are always present. Note: JSON can only represent text.    :ref:`common_options`        |    Archive filters        -a PATTERN, --match-archives PATTERN     only consider archives matching all patterns. see "borg help match-archives".        --sort-by KEYS                           Comma-separated list of sorting keys; valid keys are: timestamp, archive, name, id, tags, host, user; default is: timestamp        --first N                                consider first N archives after other filters were applied        --last N                                 consider last N archives after other filters were applied        --oldest TIMESPAN                        consider archives between the oldest archive's timestamp and (oldest + TIMESPAN), e.g. 7d or 12m.        --newest TIMESPAN                        consider archives between the newest archive's timestamp and (newest - TIMESPAN), e.g. 7d or 12m.        --older TIMESPAN                         consider archives older than (now - TIMESPAN), e.g. 7d or 12m.        --newer TIMESPAN                         consider archives newer than (now - TIMESPAN), e.g. 7d or 12m.        --deleted                                consider only soft-deleted archives.Description~~~~~~~~~~~This command lists the archives contained in a repository... man NOTESThe FORMAT specifier syntax+++++++++++++++++++++++++++The ``--format`` option uses python's `format string syntax<https://docs.python.org/3.9/library/string.html#formatstrings>`_.Examples:::    $ borg repo-list --format '{archive}{NL}'    ArchiveFoo    ArchiveBar    ...    # {VAR:NUMBER} - pad to NUMBER columns.    # Strings are left-aligned, numbers are right-aligned.    # Note: time columns except ``isomtime``, ``isoctime`` and ``isoatime`` cannot be padded.    $ borg repo-list --format '{archive:36} {time} [{id}]{NL}' /path/to/repo    ArchiveFoo                           Thu, 2021-12-09 10:22:28 [0b8e9...3b274]    ...The following keys are always available:- NEWLINE: OS dependent line separator- NL: alias of NEWLINE- NUL: NUL character for creating print0 / xargs -0 like output- SPACE: space character- TAB: tab character- CR: carriage return character- LF: line feed characterKeys available only when listing archives in a repository:- archive: archive name- name: alias of "archive"- comment: archive comment- id: internal ID of the archive- tags: archive tags- start: time (start) of creation of the archive- time: alias of "start"- end: time (end) of creation of the archive- command_line: command line which was used to create the archive- hostname: hostname of host on which this archive was created- username: username of user who created this archive- size: size of this archive (data plus metadata, not considering compression and deduplication)- nfiles: count of files in this archive
 |