Skip to content

Instantly share code, notes, and snippets.

@schmidan
Last active September 20, 2017 08:25
Show Gist options
  • Save schmidan/a9ad2f761394e4ce5e1661877d471b60 to your computer and use it in GitHub Desktop.
Save schmidan/a9ad2f761394e4ce5e1661877d471b60 to your computer and use it in GitHub Desktop.
[bash]
# 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