forked from TrueCloudLab/restic
describe ls command in docs
This commit is contained in:
parent
d4ed7c8858
commit
10e71af759
2 changed files with 73 additions and 0 deletions
|
@ -82,6 +82,76 @@ Furthermore you can group the output by the same filters (host, paths, tags):
|
||||||
1 snapshots
|
1 snapshots
|
||||||
|
|
||||||
|
|
||||||
|
Listing files in a snapshot
|
||||||
|
===========================
|
||||||
|
|
||||||
|
To get a list of the files in a specific snapshot you can use the ``ls`` command:
|
||||||
|
|
||||||
|
.. code-block:: console
|
||||||
|
|
||||||
|
$ restic ls 073a90db
|
||||||
|
|
||||||
|
snapshot 073a90db of [/home/user/work.txt] filtered by [] at 2024-01-21 16:51:18.474558607 +0100 CET):
|
||||||
|
/home
|
||||||
|
/home/user
|
||||||
|
/home/user/work.txt
|
||||||
|
|
||||||
|
The special snapshot ID ``latest`` can be used to list files and directories of the latest snapshot in the repository.
|
||||||
|
The ``--host`` flag can be used in conjunction to select the latest snapshot originating from a certain host only.
|
||||||
|
|
||||||
|
.. code-block:: console
|
||||||
|
|
||||||
|
$ restic ls --host kasimir latest
|
||||||
|
|
||||||
|
snapshot 073a90db of [/home/user/work.txt] filtered by [] at 2024-01-21 16:51:18.474558607 +0100 CET):
|
||||||
|
/home
|
||||||
|
/home/user
|
||||||
|
/home/user/work.txt
|
||||||
|
|
||||||
|
By default, ``ls`` prints all files in a snapshot.
|
||||||
|
|
||||||
|
File listings can optionally be filtered by directories. Any positional arguments after the snapshot ID are interpreted
|
||||||
|
as absolute directory paths, and only files inside those directories will be listed. Files in subdirectories are not
|
||||||
|
listed when filtering by directories. If the ``--recursive`` flag is used, then subdirectories are also included.
|
||||||
|
Any directory paths specified must be absolute (starting with a path separator); paths use the forward slash '/'
|
||||||
|
as separator.
|
||||||
|
|
||||||
|
.. code-block:: console
|
||||||
|
|
||||||
|
$ restic ls latest /home
|
||||||
|
|
||||||
|
snapshot 073a90db of [/home/user/work.txt] filtered by [/home] at 2024-01-21 16:51:18.474558607 +0100 CET):
|
||||||
|
/home
|
||||||
|
/home/user
|
||||||
|
|
||||||
|
.. code-block:: console
|
||||||
|
|
||||||
|
$ restic ls --recursive latest /home
|
||||||
|
|
||||||
|
snapshot 073a90db of [/home/user/work.txt] filtered by [/home] at 2024-01-21 16:51:18.474558607 +0100 CET):
|
||||||
|
/home
|
||||||
|
/home/user
|
||||||
|
/home/user/work.txt
|
||||||
|
|
||||||
|
To show more details about the files in a snapshot, you can use the ``--long`` option. The colums include
|
||||||
|
file permissions, UID, GID, file size, modification time and file path. For scripting usage, the
|
||||||
|
``ls`` command supports the ``--json`` flag; the JSON output format is described at :ref:`ls json`.
|
||||||
|
|
||||||
|
.. code-block:: console
|
||||||
|
|
||||||
|
$ restic ls --long latest
|
||||||
|
|
||||||
|
snapshot 073a90db of [/home/user/work.txt] filtered by [] at 2024-01-21 16:51:18.474558607 +0100 CET):
|
||||||
|
drwxr-xr-x 0 0 0 2024-01-21 16:50:52 /home
|
||||||
|
drwxr-xr-x 0 0 0 2024-01-21 16:51:03 /home/user
|
||||||
|
-rw-r--r-- 0 0 18 2024-01-21 16:51:03 /home/user/work.txt
|
||||||
|
|
||||||
|
NCDU (NCurses Disk Usage) is a tool to analyse disk usage of directories. The ``ls`` command supports
|
||||||
|
outputting information about a snapshot in the NCDU format using the ``--ncdu`` option.
|
||||||
|
|
||||||
|
You can use it as follows: ``restic ls latest --ncdu | ncdu -f -``
|
||||||
|
|
||||||
|
|
||||||
Copying snapshots between repositories
|
Copying snapshots between repositories
|
||||||
======================================
|
======================================
|
||||||
|
|
||||||
|
@ -242,6 +312,7 @@ Currently, rewriting the hostname and the time of the backup is supported.
|
||||||
This is possible using the ``rewrite`` command with the option ``--new-host`` followed by the desired new hostname or the option ``--new-time`` followed by the desired new timestamp.
|
This is possible using the ``rewrite`` command with the option ``--new-host`` followed by the desired new hostname or the option ``--new-time`` followed by the desired new timestamp.
|
||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
$ restic rewrite --new-host newhost --new-time "1999-01-01 11:11:11"
|
$ restic rewrite --new-host newhost --new-time "1999-01-01 11:11:11"
|
||||||
|
|
||||||
repository b7dbade3 opened (version 2, compression level auto)
|
repository b7dbade3 opened (version 2, compression level auto)
|
||||||
|
|
|
@ -409,6 +409,8 @@ The ``key list`` command returns an array of objects with the following structur
|
||||||
+--------------+------------------------------------+
|
+--------------+------------------------------------+
|
||||||
|
|
||||||
|
|
||||||
|
.. _ls json:
|
||||||
|
|
||||||
ls
|
ls
|
||||||
--
|
--
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue