Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to copy all *.jar files from directory and all its subdirectories. How can I do it in UNIX/Linux terminal? Command cp -r *.jar /destination_dir doesn't work.

share|improve this question
does the destination directory need to maintain the folder structure of the source directory? – Alex Mar 8 '12 at 18:45

closed as off topic by Will Mar 15 '12 at 12:47

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

7 Answers

up vote 12 down vote accepted

rsync is useful for local file copying as well as between machines. This will do what you want:

rsync -avm --include='*.jar' -f 'hide,! */' . /destination_dir

The entire directory structure from . is copied to /destination_dir, but only the .jar files are copied. The -a ensures all permissions and times on files are unchanged. The -m will omit empty directories. -v is for verbose output.

For a dry run add a -n, it will tell you what it would do but not actually copy anything.

share|improve this answer
tar -cf - `find . -name "*.jar" -print` | ( cd /destination_dir && tar xBf - )
share|improve this answer
Why do you use the B flag for the destination tar? The man page says only "reblock as we read". I haven't ever run across obvious issues without it in similar settings, but I'm curious. – Eduardo Ivanec Mar 8 '12 at 23:01
@EduardoIvanec Reblock will make sure that the copy has happened correctly. linuxdevcenter.com/pub/a/linux/lpt/18_16.html. Also, from tar GNU docs, If --read-full-records (-B) is used, tar will not panic if an attempt to read a record from the archive does not return a full record. Instead, tar will keep reading until it has obtained a full record But as you observed, it should run fine in most of the cases. – Pavan Manjunath Mar 9 '12 at 4:46
That's great, thank you! – Eduardo Ivanec Mar 9 '12 at 12:50

If your find has an -exec switch, and cp an -t option:

find . -name "*.jar" -exec cp -t /destination_dir {} +

If you find doesn't provide the "+" for parallel invocation, you can use ";" but then you can omit the -t:

find . -name "*.jar" -exec cp {} /destination_dir ";"
share|improve this answer
1  
If the user's not using GNU find, there will be -exec but not with the + command terminator. – glenn jackman Mar 8 '12 at 19:57
Thanks, @glennjackman. Added a plusless solution. – user unknown Mar 8 '12 at 20:09
@glennjackman -1. The + command terminator is defined by POSIX. pubs.opengroup.org/onlinepubs/009604599/utilities/find.html – jordanm Mar 8 '12 at 20:18
@jordanm, hmm. On a Solaris 8 box at work, the first find in my path is GNU find 4.1, which doesn't have +. Guess I shouldn't take a 10 year old program as gospel. – glenn jackman Mar 8 '12 at 20:31
@glennjackman :) 10 years old? But mine is only 4.4.2 - doesn't look so dramatically. – user unknown Mar 8 '12 at 22:23

If you don't need the directory structure only the jar files, you can use:

shopt -s globstar
cp **/*.jar destination_dir

If you want the directory structure you can check cp's --parent option.

share|improve this answer
+1 for shopt globstar, I didn't know about either of those things, useful. – Sean Mar 9 '12 at 10:22

If you want to maintain the same directory hierarchy under the destination, you could use

(cd SOURCE && find . -type f -name \*.jar -exec tar cf - {} +) \
  | (cd DESTINATION && tar xf -)

This way of doing it, instead of expanding the output of find within back-ticks, has the advantage of being able to handle any number of files.

share|improve this answer
find . -name \*.jar | xargs cp -t /destination_dir

Assuming your jar filenames do not contain spaces, and your cp has the "-t" option. If cp can't do "-t"

find . -name \*.jar | xargs -I FILE cp FILE /destination_dir
share|improve this answer
cp --parents `find -name \*.jar` destination/

from man cp:

--parents
       use full source file name under DIRECTORY
share|improve this answer
The OP tagged this "unix", not Linux. AFAIK, the --parents option to cp is Linux-only. – ghoti Mar 8 '12 at 19:23
You mean "GNU-only" – glenn jackman Mar 8 '12 at 19:58

Not the answer you're looking for? Browse other questions tagged or ask your own question.