Skip to content

Instantly share code, notes, and snippets.

@jeremyckahn
Last active August 29, 2015 14:17
Show Gist options
  • Save jeremyckahn/77e9fddacb2596a1a542 to your computer and use it in GitHub Desktop.
Save jeremyckahn/77e9fddacb2596a1a542 to your computer and use it in GitHub Desktop.
Convert all SCSS files to SASS.
for FILE in `ls`; do sass-convert $FILE > `echo $FILE | sed s/scss/sass/`; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment