Last active
September 20, 2017 08:25
-
-
Save schmidan/a9ad2f761394e4ce5e1661877d471b60 to your computer and use it in GitHub Desktop.
[bash]
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
# rename a given *.extension | |
find . -name '*.aif' -exec sh -c 'mv "$0" "${0%.aif}.aiff"' {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment