mirror of
https://github.com/octoleo/restic.git
synced 2024-11-21 12:25:09 +00:00
describe ls command in docs
This commit is contained in:
parent
d4ed7c8858
commit
10e71af759
@ -82,6 +82,76 @@ Furthermore you can group the output by the same filters (host, paths, tags):
|
||||
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
|
||||
======================================
|
||||
|
||||
@ -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.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ restic rewrite --new-host newhost --new-time "1999-01-01 11:11:11"
|
||||
|
||||
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
|
||||
--
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user