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.
|
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.
|
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. |
||||
|
|
|
|||||||
|
|
If your find has an -exec switch, and cp an -t option:
If you find doesn't provide the "+" for parallel invocation, you can use ";" but then you can omit the
|
|||||||||||||
|
|
If you don't need the directory structure only the jar files, you can use:
If you want the directory structure you can check |
|||
|
|
If you want to maintain the same directory hierarchy under the destination, you could use
This way of doing it, instead of expanding the output of |
|||
|
|
Assuming your jar filenames do not contain spaces, and your
|
|||
|
|
from
|
|||||
|