Skip to content

Instantly share code, notes, and snippets.

@seblambla
Created September 28, 2016 09:00
Show Gist options
  • Save seblambla/3690dea1866bd95745e2eb016d939268 to your computer and use it in GitHub Desktop.
Save seblambla/3690dea1866bd95745e2eb016d939268 to your computer and use it in GitHub Desktop.
for file in `ls *.scss`;
do
n="$(echo $file | sed 's/^\(.*\).scss$/\1.sass/')";
sass-convert $file $n;
rm $file;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment