3

How can I restore some files from my duplicity backup excluding some directories/files ?

Does --include --exclude work along with restore ?

Vikas Tiwari
  • 131
  • 2

1 Answers1

1

Vikas,

unfortunately not. in/exclude are not implemented in duplicity restore. you can however use --file-to-restore eg.

duplicity restore [--file-to-restore <relpath>] [--time <time>] <url> <target_folder>

as described in the man page [1] to restore a specific file/folder(recursively) only.

..ede/duply.net

[1] http://duplicity.nongnu.org/duplicity.1.html

ede-duply.net
  • 483
  • 2
  • 3