From b2703a40894c8998137fc706712d7804fadb2437 Mon Sep 17 00:00:00 2001 From: Nils Decker Date: Mon, 30 Oct 2023 12:09:33 +0100 Subject: [PATCH] add changelog for ls --ncdu --- changelog/unreleased/issue-4549 | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 changelog/unreleased/issue-4549 diff --git a/changelog/unreleased/issue-4549 b/changelog/unreleased/issue-4549 new file mode 100644 index 000000000..4829a9881 --- /dev/null +++ b/changelog/unreleased/issue-4549 @@ -0,0 +1,11 @@ +Enhancement: Add `--ncdu` option to `ls` command + +NCDU (NCurses Disk Usage) is a tool to analyse disk usage of directories. +It has an option to save a directory tree and analyse it later. +The `ls` command now supports the `--ncdu` option which outputs information +about a snapshot in the NCDU format. + +You can use it as follows: `restic ls latest --ncdu | ncdu -f -` + +https://github.com/restic/restic/issues/4549 +https://github.com/restic/restic/pull/4550