Skip to content

Instantly share code, notes, and snippets.

@sanxac
Created March 15, 2012 20:45
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save sanxac/2046791 to your computer and use it in GitHub Desktop.
Save sanxac/2046791 to your computer and use it in GitHub Desktop.
convert scss files to sass and delete .scss files in a directory
#!/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