Skip to content

Instantly share code, notes, and snippets.

@sibsfinx
Last active August 29, 2015 14:03
Show Gist options
  • Save sibsfinx/942aa4e35f9931822b91 to your computer and use it in GitHub Desktop.
Save sibsfinx/942aa4e35f9931822b91 to your computer and use it in GitHub Desktop.
CSS and SCSS to SASS
#!/bin/bash
for f in *.css; do sass-convert $f ${f%css}sass ; done
rm *.css
#!/bin/bash
for f in *.scss; do sass-convert $f ${f%scss}sass ; done
rm *.scss
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment