Skip to content

Instantly share code, notes, and snippets.

@bzerangue
Created April 25, 2012 20:20
Show Gist options
  • Save bzerangue/2493026 to your computer and use it in GitHub Desktop.
Save bzerangue/2493026 to your computer and use it in GitHub Desktop.
RECURSIVELY Bash convert all your .css to .scss in one line
find . -name "*.css" | while read i; do sass-convert -F css -T scss "$i" "${i%.*}.scss"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment