borg/docs/usage/list.rst.inc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

161 lines
13 KiB
PHP
Raw Normal View History

2016-07-05 21:30:08 +00:00
.. IMPORTANT: this file is auto-generated from borg's built-in help, do not edit!
.. _borg_list:
borg list
---------
.. code-block:: none
2022-06-23 23:19:19 +00:00
borg [common options] list [options] NAME [PATH...]
2017-06-20 13:22:24 +00:00
.. only:: html
.. class:: borg-options-table
2022-06-23 23:19:19 +00:00
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **positional arguments** |
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| | ``NAME`` | specify the archive name |
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| | ``PATH`` | paths to list; patterns are supported |
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **optional arguments** |
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| | ``--short`` | only print file/directory names, nothing else |
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| | ``--format FORMAT`` | specify format for file listing (default: "{mode} {user:6} {group:6} {size:8} {mtime} {path}{extra}{NL}") |
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| | ``--json-lines`` | Format output as JSON Lines. 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. A "bpath" key is therefore not available. |
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| .. class:: borg-common-opt-ref |
| |
| :ref:`common_options` |
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Exclusion options** |
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| | ``-e PATTERN``, ``--exclude PATTERN`` | exclude paths matching PATTERN |
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| | ``--exclude-from EXCLUDEFILE`` | read exclude patterns from EXCLUDEFILE, one per line |
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| | ``--pattern PATTERN`` | include/exclude paths matching PATTERN |
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| | ``--patterns-from PATTERNFILE`` | read include/exclude patterns from PATTERNFILE, one per line |
+-------------------------------------------------------+---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2017-06-20 13:22:24 +00:00
.. raw:: html
<script type='text/javascript'>
$(document).ready(function () {
2017-06-20 13:22:24 +00:00
$('.borg-options-table colgroup').remove();
})
</script>
.. only:: latex
2022-06-23 23:19:19 +00:00
NAME
specify the archive name
2017-06-20 13:22:24 +00:00
PATH
paths to list; patterns are supported
optional arguments
--short only print file/directory names, nothing else
2022-06-23 23:19:19 +00:00
--format FORMAT specify format for file listing (default: "{mode} {user:6} {group:6} {size:8} {mtime} {path}{extra}{NL}")
--json-lines Format output as JSON Lines. 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. A "bpath" key is therefore not available.
2017-06-20 13:22:24 +00:00
:ref:`common_options`
|
Exclusion options
-e PATTERN, --exclude PATTERN exclude paths matching PATTERN
--exclude-from EXCLUDEFILE read exclude patterns from EXCLUDEFILE, one per line
2022-02-05 16:22:33 +00:00
--pattern PATTERN include/exclude paths matching PATTERN
--patterns-from PATTERNFILE read include/exclude patterns from PATTERNFILE, one per line
2017-06-20 09:49:26 +00:00
2017-03-26 23:45:45 +00:00
Description
~~~~~~~~~~~
2022-06-23 23:19:19 +00:00
This command lists the contents of an archive.
2016-03-18 11:17:57 +00:00
2022-02-19 17:47:47 +00:00
For more help on include/exclude patterns, see the :ref:`borg_patterns` command output.
2016-03-18 11:17:57 +00:00
2017-03-26 23:45:45 +00:00
.. man NOTES
2022-01-23 14:52:21 +00:00
The FORMAT specifier syntax
+++++++++++++++++++++++++++
The ``--format`` option uses python's `format string syntax
2022-04-14 19:09:23 +00:00
<https://docs.python.org/3.9/library/string.html#formatstrings>`_.
2022-01-23 14:52:21 +00:00
Examples:
::
2022-06-23 23:19:19 +00:00
$ borg list --format '{mode} {user:6} {group:6} {size:8} {mtime} {path}{extra}{NL}' ArchiveFoo
2022-01-23 14:52:21 +00:00
-rw-rw-r-- user user 1024 Thu, 2021-12-09 10:22:17 file-foo
...
# {VAR:<NUMBER} - pad to NUMBER columns left-aligned.
# {VAR:>NUMBER} - pad to NUMBER columns right-aligned.
2022-06-23 23:19:19 +00:00
$ borg list --format '{mode} {user:>6} {group:>6} {size:<8} {mtime} {path}{extra}{NL}' ArchiveFoo
2022-01-23 14:52:21 +00:00
-rw-rw-r-- user user 1024 Thu, 2021-12-09 10:22:17 file-foo
...
The following keys are always available:
2022-06-26 18:06:58 +00:00
2017-06-18 00:10:10 +00:00
- NEWLINE: OS dependent line separator
- NL: alias of NEWLINE
2022-01-23 14:52:21 +00:00
- NUL: NUL character for creating print0 / xargs -0 like output, see barchive and bpath keys below
2017-06-18 00:10:10 +00:00
- SPACE
- TAB
- CR
- LF
2022-01-23 14:52:21 +00:00
Keys available only when listing files in an archive:
2017-06-18 00:10:10 +00:00
- type
- mode
- uid
- gid
- user
- group
- path: path interpreted as text (might be missing non-text characters, see bpath)
- bpath: verbatim POSIX path, can contain any character except NUL
2022-06-23 23:19:19 +00:00
- source: link target for symlinks (identical to linktarget)
2017-06-18 00:10:10 +00:00
- linktarget
2022-06-23 23:19:19 +00:00
- hlid: hard link identity (same if hardlinking same fs object)
2017-06-18 00:10:10 +00:00
- flags
- size
- dsize: deduplicated size
- num_chunks: number of chunks in this file
- unique_chunks: number of unique chunks in this file
- mtime
- ctime
- atime
- isomtime
- isoctime
- isoatime
2020-10-04 18:32:38 +00:00
- blake2b
- blake2s
2017-06-18 00:10:10 +00:00
- md5
- sha1
- sha224
- sha256
- sha384
2020-10-04 18:32:38 +00:00
- sha3_224
- sha3_256
- sha3_384
- sha3_512
2017-06-18 00:10:10 +00:00
- sha512
2019-09-06 22:27:17 +00:00
- xxh64: XXH64 checksum of this file (note: this is NOT a cryptographic hash!)
2017-06-18 00:10:10 +00:00
- archiveid
- archivename
- extra: prepends {source} with " -> " for soft links and " link to " for hard links
- health: either "healthy" (file ok) or "broken" (if file has all-zero replacement chunks)