Skip to content

Instantly share code, notes, and snippets.

@volo1st
Last active April 21, 2016 03:55
Show Gist options
  • Save volo1st/64ab3c07dc5a4879c7060a496a89c6db to your computer and use it in GitHub Desktop.
Save volo1st/64ab3c07dc5a4879c7060a496a89c6db to your computer and use it in GitHub Desktop.
Remove the deprecated unnecessary css extension name from scss files
find . -type f -name '*.css.scss' -exec bash -c 'mv $1 $(dirname "$1")/$(basename "$1" .css.scss).scss' _ {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment