Skip to content

Instantly share code, notes, and snippets.

@kevin-smets
Forked from sanxac/scss2sass.sh
Last active June 7, 2018 07:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kevin-smets/5791825 to your computer and use it in GitHub Desktop.
Save kevin-smets/5791825 to your computer and use it in GitHub Desktop.
#!/bin/bash
for f in *.sass; do sass-convert $f ${f%sass}scss ; done
rm *.scss
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment