Created
May 16, 2020 06:48
-
-
Save unacceptable/6475d53af791d68e242c9dcd70c537df to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
set -e | |
# Change file extensions | |
while read -r f; do | |
git mv "${f%.*}.yml" "${f%.*}.yaml" | |
done < <( | |
find . -name "*.yml" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment