Created
February 14, 2014 03:00
-
-
Save bgerstle/8995078 to your computer and use it in GitHub Desktop.
`git mv` all *.{h,m} files which aren't in the "Project-X/Tests/" folder into "Classes/"
This file contains 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 . \( -name "*.h" -o -name "*.m" \) -not -path ./Project-X/Tests/\* -exec git mv {} Classes/ \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment