Skip to content

Instantly share code, notes, and snippets.

@hiiamyes
Created September 5, 2017 01:18
Show Gist options
  • Save hiiamyes/bca0536d8d7812458d9ad34b766db490 to your computer and use it in GitHub Desktop.
Save hiiamyes/bca0536d8d7812458d9ad34b766db490 to your computer and use it in GitHub Desktop.
copy all files with a certain extension from all subdirectories
# https://stackoverflow.com/questions/15617016/cp-copy-all-files-with-a-certain-extension-from-all-subdirectories
find . -name \*.xls -exec cp {} newDir \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment