How do I bulk extract all the latest version of files
Bug #139795 reported by
SourceContact
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
TimeVault |
Fix Committed
|
Wishlist
|
SourceContact |
Bug Description
This bug addresses question 13237: https:/
How would I restore all the latest versions of files from a backup vault?
To post a comment you must log in.
# timevault-extract: Extracts all the latest files from a vault to a destination directory
Commandline options:
-r, --root: Mandatory - Specifies vault root folder which contains internal, catalog, and pending dirs
-f, --filter: Optional - Filter on folder/file pattern ('%' is wildcard character)
-d, --destination: Optional - Specifies base directory to restore to. Defaults to ./dst/
-s, --simulate: Optional - Don't copy anything, just describe what would be done
Example usages:
sudo ./timevault-extract --root /vault/folder --filter /home/me/docs/ --simulate
(Simulate extracting files snapped from /home/me/docs/* from the vault in /vault/folder)
sudo ./timevault-extract -r /backup -d abcd
(Extract all files from the vault in /backup to abcd/)