Skip to content

Instantly share code, notes, and snippets.

@hmngwy
Created July 18, 2014 05:35
Show Gist options
  • Save hmngwy/fdddc4d819bb3c88cda9 to your computer and use it in GitHub Desktop.
Save hmngwy/fdddc4d819bb3c88cda9 to your computer and use it in GitHub Desktop.
SH Copy Files by Extension, Maintain Directory Structure
find /source -regextype posix-extended -regex '.*(png|jpg)' \
-exec cp --parents {} /dest \; -print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment