Skip to content

Instantly share code, notes, and snippets.

@cadrev
Created June 21, 2015 13:22
Show Gist options
  • Save cadrev/4b4ff2bc716ca941f740 to your computer and use it in GitHub Desktop.
Save cadrev/4b4ff2bc716ca941f740 to your computer and use it in GitHub Desktop.
Copy all jpeg to a directory
find . -type f \( -iname "*.jpg" -o -iname "*.jpeg" \) -exec cp '{}' /dirname \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment