Re: recursively copy selective files



techietone wrote:
Hi All,

How can we copy certain type of files, recursively into another
directory?

I have tried using tar -cf - `find . -name "STRING*.*"` | ( cd
DESTINITION_DIR && tar xBf - ) but I am getting a error:
bash: /bin/tar: Argument list too long


find . -name 'STRING*' | cpio -pdmv DESTINATION_DIR
.