让 Duplicity 列出要备份的文件吗?

让 Duplicity 列出要备份的文件吗?

使用 rsync 时,--dry-run它可以列出将要备份的文件。但是当我使用 duplicity 时

duplicity --dry-run --name pchome --encrypt-sign-key xxx --include $HOME/Desktop --exclude '**' $HOME file:///mnt/backup

它只是提供统计数据。

问题

我怎样才能让 duplicity 列出它将执行的更改(copy/dalete)?

答案1

增加输出的详细程度。根据口是心非的人

       --verbosity level, -vlevel
          Specify output verbosity level (log level).  Named levels and corresponding values
          are 0 Error, 2 Warning, 4 Notice (default), 8 Info, 9 Debug (noisiest).
          level may also be
          a character: e, w, n, i, d
          a word: error, warning, notice, info, debug

          The options -v4, -vn and -vnotice are functionally equivalent, as are the
          mixed/upper-case versions -vN, -vNotice and -vNOTICE.

--verbosity info为我工作

相关内容