I have my download dir with many rar's and trying to move them. How would I do that.

link|improve this question
feedback

migrated from stackoverflow.com Mar 26 '11 at 14:22

This question came from our site for professional and enthusiast programmers.

1 Answer

you can do some thing like:

find -name ".rar" -exec cp {} dest_dir \;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown