Skip to content

Instantly share code, notes, and snippets.

@rbin
Created January 30, 2013 02:29
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rbin/4670076 to your computer and use it in GitHub Desktop.
Save rbin/4670076 to your computer and use it in GitHub Desktop.
Look for any SCSS files in a Directory, and change them to minimal-style .sass! (The better version!
#!/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