Created
April 25, 2012 20:20
-
-
Save bzerangue/2493026 to your computer and use it in GitHub Desktop.
RECURSIVELY Bash convert all your .css to .scss in one line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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