Skip to content

Instantly share code, notes, and snippets.

@j-mcnally
Created July 25, 2013 21:47
Show Gist options
  • Save j-mcnally/6084073 to your computer and use it in GitHub Desktop.
Save j-mcnally/6084073 to your computer and use it in GitHub Desktop.
Change scss to sass
for F in $(find ./app/assets -name '*.scss'); do export FILENAME=${F##*/} && sass-convert $F ${F%$FILENAME}`basename "${F}" ".scss"`.sass && rm $F; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment