Skip to content

Instantly share code, notes, and snippets.

@EpeeCheeze
Last active December 25, 2015 14:39
Show Gist options
  • Save EpeeCheeze/6992506 to your computer and use it in GitHub Desktop.
Save EpeeCheeze/6992506 to your computer and use it in GitHub Desktop.
Rename all *.css files to *.scss files
find . -type f | grep \.css$ | egrep -v "(tiny_mce|jquery|tinymce|scss)" | sed 'p;s/\.css/\.scss/' | xargs -n2 git mv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment