• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Linux; CP command with find?

cp location/of/files/*.doc destination/location/

or used . as the destination if you're in the directory you want them to be in.
 
find /path/to/search -name '*.doc' -exec cp -v "{}" /destination/path

You may have to play with it a bit if the filenames have spaces in them, I'm not sure if the quotes around {} will work well or not.
 
Originally posted by: Nothinman
find /path/to/search -name '*.doc' -exec cp -v "{}" /destination/path

You may have to play with it a bit if the filenames have spaces in them, I'm not sure if the quotes around {} will work well or not.

You also have to end that statement with \;
 
Back
Top