Foo.bar.200809101300.txt
Foo.bar.200809101300.bin
You can see that if someone needs to have “the holiday weekend” restored, that’s three days of files.
When confronted with a GUI, I have to checkbox each one of these files. Not only that, but I have to scan through all the files in the directory and try to pluck out the ones that need to be restored.
Here is the command line equivalent that I would use
dsmc q backup -inact /some/directory/active/foo.bar.20080910"*" |grep DEFAULT | awk '{print $7}' > /some/directory/archive/filelist.txt
dsmc rest -ina -filelist=/some/directory/archive/filelist.txt /some/directory/archive
The first command generates the list of files, and the second command restores all the files found in the list.
That's why the windows guys get teased with "click, click, click, click".

0 comments:
Post a Comment