TiziteLayinLow
Senior member
Im a little rusty with linux but can anyone help me find the command to copy all files with extension .doc to a location?
thanks
thanks
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.
Originally posted by: Nothinman
er yea