Created
October 27, 2014 13:14
-
-
Save thijsvdanker/fe37faf999ab5dfeab73 to your computer and use it in GitHub Desktop.
Move all jpg files within a path recursively to the current directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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