About Linux FAQ

Browse More FAQs:

Restore Selected Files From Secondary Backup Hard Disk

Posted by Vivek on Wednesday March 26, 08 @8:14 pm

Q. I've backup created using rsync command stored at /disk2/home/tom/ directory. Accidentally, I had deleted files from /home/tom directory. I'd like to restore all file names starting with alpha numeric characters from /disk2/home/tom/ to /home/tom. How do I restore selected files in a batch mode?

A. You can simply use old good find command to copy all files in a batch mode:
$ cd $HOME
$ find /disk2/home/tom/ -maxdepth 1 -type f -iname '[a-z|0-9]*' -exec /bin/cp -v {} . \;

Where,

  • /disk2/home/tom/ : Source directory
  • -maxdepth 1 : Descend at most levels of directories below the command line arguments i.e. only copy files from /disk2/home/tom/ directory
  • -type f : Only files no directories
  • -iname '[a-z|0-9]*' : Case insensitive file copy pattern
  • -exec /bin/cp -v {} . \; : Execute cp command to copy each file to your $HOME directory

Subscribe to our free e-mail newsletter or RSS feed to get all updates. You can Email this page to a friend.

Related Linux / UNIX FAQ:

Leave a Reply

We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Please do not use the comment form to ask for help / question. Ask your question on the excellent Linux tech support forum. Thank you very much for stopping by our site!

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

*
To prove you're a person (not a spam script), type the security word shown in the picture. Click on the picture to hear an audio file of the word.
Click to hear an audio file of the anti-spam word

Tags: , , , , , , , , , ~ Last updated on: March 26, 2008

Copyright © 2006-2008 nixCraft. All rights reserved - TOS/Disclaimer - Privacy policy - Sitemap - Powered by Open source software.