Skip to content

Instantly share code, notes, and snippets.

@thijsvdanker
Created October 27, 2014 13:14
Show Gist options
  • Save thijsvdanker/fe37faf999ab5dfeab73 to your computer and use it in GitHub Desktop.
Save thijsvdanker/fe37faf999ab5dfeab73 to your computer and use it in GitHub Desktop.
Move all jpg files within a path recursively to the current directory
find /path/to/files/ -name "*.jpg" -exec mv {} ./ \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment