Skip to content

Instantly share code, notes, and snippets.

@EnglishLFC
Created February 11, 2018 15:12
Show Gist options
  • Save EnglishLFC/c772e6141b095b304cf1471046411078 to your computer and use it in GitHub Desktop.
Save EnglishLFC/c772e6141b095b304cf1471046411078 to your computer and use it in GitHub Desktop.
Change file extension
for f in *.pro; do
  mv "$f" "$(basename "$f" .pro).chopro"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment