Skip to content

Instantly share code, notes, and snippets.

@rubydoc
Forked from sanxac/scss2sass.sh
Last active August 29, 2015 14:12
Show Gist options
  • Save rubydoc/136e826494a6d91316fd to your computer and use it in GitHub Desktop.
Save rubydoc/136e826494a6d91316fd to your computer and use it in GitHub Desktop.
#!/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