我在用着塔斯纳普用于备份,并且运行良好。但是,为了测试备份,我想恢复它但不覆盖文件的当前版本。因此,将备份提取到与备份源文件夹不同的文件夹中是有意义的。tarsnap 可以做到这一点吗?
答案1
来自手册页:
-C directory
(c and x modes only) In c mode, this changes the directory before adding the following files. In x mode, change directories after opening the archive but before
extracting entries from the archive.
因此,tarsnap -f imagename -C output-dir
将提取imagename
到output-dir
。