Skip to content

Instantly share code, notes, and snippets.

@jimfilippou
Created October 20, 2017 18:53
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 jimfilippou/aadabbd43aa96a808b5a72897a42becb to your computer and use it in GitHub Desktop.
Save jimfilippou/aadabbd43aa96a808b5a72897a42becb to your computer and use it in GitHub Desktop.
Renames all files within directory
for file in *.html; do mv "$file" "${file/.html/.php}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment