Skip to content

Instantly share code, notes, and snippets.

@bzerangue
Forked from ericdfields/gist:1717578
Created April 25, 2012 17:59
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 bzerangue/2491702 to your computer and use it in GitHub Desktop.
Save bzerangue/2491702 to your computer and use it in GitHub Desktop.
Bash convert all your .css to .scss in one line (because you've seen the light)
# From .css to .scss
for f in *.css; do sass-convert -F css -T scss $f ${f%%.*}.scss; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment