Last active
August 6, 2016 13:24
-
-
Save danwarfel/514565416578c9eaf70c to your computer and use it in GitHub Desktop.
Recursively Move Files Of Specific Type to Target Directory From http://stackoverflow.com/questions/14345714/recursively-moving-all-files-of-a-specific-type-into-a-target-directory-in-bash#answer-14345769
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 src/dir/ -name '*.txt' -exec mv {} target/dir/ \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment