Skip to content

Instantly share code, notes, and snippets.

@rusty-key
Created September 25, 2015 18:20
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 rusty-key/21e52220521ed8c59eb7 to your computer and use it in GitHub Desktop.
Save rusty-key/21e52220521ed8c59eb7 to your computer and use it in GitHub Desktop.
Mass recursive rename (file extension change)
find . -depth -name "*.scss" -exec sh -c 'mv "$1" "${1%.scss}.css"' _ {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment