Skip to content

Instantly share code, notes, and snippets.

@veremey
Forked from sanxac/scss2sass.sh
Created August 9, 2016 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veremey/c5cb97938cb8d26d7970083c5b205d51 to your computer and use it in GitHub Desktop.
Save veremey/c5cb97938cb8d26d7970083c5b205d51 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