Skip to content

Instantly share code, notes, and snippets.

@ziadoz
Created December 22, 2021 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ziadoz/2694f4fef05b6a1c3be6b386ef77a7a4 to your computer and use it in GitHub Desktop.
Save ziadoz/2694f4fef05b6a1c3be6b386ef77a7a4 to your computer and use it in GitHub Desktop.
Git Rename File Extensions
#!/usr/bin/env bash
for file in `find templates -name "*.oldext" -type f -print`; do
git mv "$file" ${file%.oldext}.newext;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment