Linux: Find and copy the same file type from multiple directories to a single directory
August 8, 2013
Example looking copying .jpg
find -type f -name ‘*.jpg’ -exec cp {} ../img ;
Example looking copying .jpg
find -type f -name ‘*.jpg’ -exec cp {} ../img ;