Wednesday 30 May 2018

linux - Find document files and copy them to another directory


This is a bit of a basic question but I'm trying to copy all .doc files I find in a directory and copy them to another directory.


I know each command:


find -name '*.doc' .

and:


cp filename location 

How can I combine the two commands?



Answer



find /path/to/search -name "*.doc" -exec cp {} /path/to/copy/to \;

If there are a lot of .doc files this is your best option to avoid hitting the character limit.


No comments:

Post a Comment

Where does Skype save my contact's avatars in Linux?

I'm using Skype on Linux. Where can I find images cached by skype of my contact's avatars? Answer I wanted to get those Skype avat...